Retrieve a report containing devices that need attention.
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
Invalid Request
$apiKey = 'your_automox_api_key' $headers = @{ "Authorization" = "Bearer $apiKey" } $url = 'https://console.automox.com/api/reports/needs-attention?o=0000&groupId=12345&limit=10&offset=20' $response = (Invoke-WebRequest -Method Get -Uri $url -Headers $headers).Content
{- "summary": "Needs attention example",
- "description": "Example of devices that need attention, showing compliance status and vulnerability severity counts",
- "value": {
- "nonCompliant": {
- "total": 0,
- "no_known_cves": 0,
- "unknown": 0,
- "none": 0,
- "low": 0,
- "medium": 0,
- "high": 0,
- "critical": 0,
- "devices": [ ]
}
}
}