Retrieve an Action Set

Retrieve a specific Action Set by ID

SecuritybearerAuth
Request
path Parameters
orgID
required
integer

The organization ID of the target organization.

actionSetID
required
integer

The ID of the target Action Set.

Responses
200

Successful Operation

400

Invalid Request

401

Access token is missing or invalid

403

You do not have permission to perform this action.

404

Entity not found

429

Too many requests

503

Service Unavailable

get/orgs/{orgID}/remediations/action-sets/{actionSetID}
Request samples
$apiKey = 'your_automox_api_key'
$headers = @{ "Authorization" = "Bearer $apiKey" }
$url = "/api/orgs/{orgID}/remediations/action-sets/{actionSetID}"

$response = (Invoke-WebRequest -Method Get -Uri $url -Headers $headers).Content
Response samples
application/json
{
  • "id": 17194,
  • "statistics": {
    • "issues": {
      • "unknown-host": {
        • "count": 78
        }
      },
    • "solutions": {
      • "patch-now": {
        • "count": 1,
        • "device_count": 1,
        • "vulnerability_count": 1
        },
      • "patch-with-worklet": {
        • "count": 96,
        • "device_count": 1,
        • "vulnerability_count": 4
        }
      }
    },
  • "configuration_id": "1ee24da5-654d-6464-bb90-4b1496b4b3a0",
  • "organization_id": 1191100,
  • "status": "ready",
  • "source": {
    • "name": "AVR Testing Config",
    • "type": "Rapid7"
    },
  • "created_by_user": {
    • "id": 901250,
    • "firstname": "Jane",
    • "lastname": "Doe",
    • "email": "janedoe@web.com"
    },
  • "created_at": "2023-07-27T10:00:53+0000",
  • "updated_at": "2023-07-27T10:02:52+0000"
}