v1
latestOpenAPI 3.0.02026-07-243339471.1 MBGet security risk info for applications
This API endpoint returns a breakdown of application security risks (High / Medium / Low) for the requested scope. The maximum time range is 7 days. If the range between start-at and end-at exceeds 7 days, start-at is automatically adjusted to be 7 days before end-at. This is intentional behavior; no error is returned.
Query parameters
The start time in RFC 3339 Format or epoch milliseconds (must be within 7 days of end-at).
The end time in RFC 3339 Format or epoch milliseconds (must be greater than start-at).
Filter by site identifier.
Filter by client MAC address. Forces use of the main data table (not aggregated).
Filter by device serial number. Forces use of the main data table (not aggregated).
Filter by SSID name.
Filter by user role.
Zero-based index of the first item to return. Default: 0.
Maximum number of risk level entries to return (1-100). Default: 100.
Response
Successful operation.
Example response
{
"items": [
{
"id": "HIGH",
"type": "network-monitoring/security-risk",
"generation": 1,
"createdAt": "2024-11-20T14:14:33Z",
"updatedAt": "2024-11-20T14:14:33Z",
"displayName": "High",
"count": 3
},
{
"id": "MEDIUM",
"type": "network-monitoring/security-risk",
"generation": 1,
"createdAt": "2024-11-20T14:14:33Z",
"updatedAt": "2024-11-20T14:14:33Z",
"displayName": "Medium",
"count": 12
},
{
"id": "LOW",
"type": "network-monitoring/security-risk",
"generation": 1,
"createdAt": "2024-11-20T14:14:33Z",
"updatedAt": "2024-11-20T14:14:33Z",
"displayName": "Low",
"count": 27
}
],
"count": 3,
"total": 3,
"offset": 0
}