Retrieves a paged list of issues found when ingesting the data from the vulnerability report to create an action set. See Using Global API Keys for more information on permission and scope requirements.
Successful Operation
Invalid Request
Access token is missing or invalid
You do not have permission to perform this action.
Entity not found
Too many requests
Service Unavailable
$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
{- "summary": "Issue object example",
- "description": "Example of issues found in action sets, including unknown host issues with pagination metadata",
- "value": {
- "metadata": {
- "total_pages": 1,
- "current_page": 0,
- "limit": 500,
- "total_count": 1
}, - "data": [
- {
- "id": 1,
- "issue_type": "unknown-host",
- "issue_details": {
- "hostname": "DalePC"
}
}
]
}
}