Delete a specific action set.

Delete a specific action set. See Using Global API Keys for more information on permission and scope requirements.

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
204

Successful Operation

4XX

Invalid Request

delete/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 Delete -Uri $url -Headers $headers).Content
Response samples
application/json
{
  • "errors": [
    • "string"
    ]
}