Retrieves a paged list of issues found when ingesting the data from the vulnerability report to create an action set.

Retrieves a paged list of issues found when ingesting the data from the vulnerability report to create an action set.

SecuritybearerAuth
Request
path Parameters
orgID
required
integer

The organization ID of the target organization.

actionSetID
required
integer

The ID of the target Action Set.

query Parameters
page
integer
Default: 0

First page of data to display. Default: 0

limit
integer

Maximum number of results to display.

issue_type:in[]
string

Filter on issue type.

Value: "unknown-host"
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}/issues
Request samples
$apiKey = 'your_automox_api_key'
$headers = @{ "Authorization" = "Bearer $apiKey" }
$url = "https://console.automox.com/api/orgs/{orgID}/remediations/action-sets/{actionSetID}/issues"

$response = (Invoke-WebRequest -Method Get -Uri $url -Headers $headers).Content
Response samples
application/json
{
  • "metadata": {
    • "total_pages": 1,
    • "current_page": 0,
    • "limit": 500,
    • "total_count": 1
    },
  • "data": [
    • {
      • "id": 1,
      • "issue_type": "unknown-host",
      • "issue_details": {
        • "hostname": "DalePC"
        }
      }
    ]
}