Skip to main content
GET
/
scans
/
cve
/
{scanScheduleId}
/
status
Get Latest Scan Status
curl --request GET \
  --url https://api.altostrat.io/scans/cve/{scanScheduleId}/status \
  --header 'Authorization: Bearer <token>'
{
  "targets": [
    "9c3c1392-7f36-4240-85f2-273573c0384a"
  ],
  "scanned": [
    "9c3c1392-7f36-4240-85f2-273573c0384a"
  ],
  "failed": []
}

Authorizations

Authorization
string
header
required

Enter your bearer token in the format: Bearer {token}

Path Parameters

scanScheduleId
string<uuid>
required

The unique identifier of the scan schedule.

Example:

"9c43cc95-f313-49a3-b632-524f7a24503b"

Response

The status of the latest scan for the schedule.

targets
string<uuid>[]

A list of site IDs that were targeted in the scan.

Example:
["9c3c1392-7f36-4240-85f2-273573c0384a"]
scanned
string<uuid>[]

A list of site IDs that have completed scanning (successfully or with failures).

Example:
["9c3c1392-7f36-4240-85f2-273573c0384a"]
failed
string<uuid>[]

A list of site IDs where the scan failed to complete.

Example:
[]