Retrieves all CVE scan schedules configured for the authenticated customer. Requires cve:view
scope.
curl --request GET \
--url https://api.altostrat.io/scans/cve/scheduled \
--header 'Authorization: Bearer <token>'
[
{
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"description": "<string>",
"day_of_week": 123,
"time_of_day": "02:00",
"every_n_weeks": 123,
"timezone": "<string>",
"min_cvss": 123,
"warning_threshold": 123,
"ignore_offline_sites": true,
"next_scan_at": "2025-05-05T02:00:00+10:00",
"running": true,
"sites": [
{
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"subnet": "<string>"
}
],
"notify": [
"3c90c3cc-0d44-4b50-8888-8dd25736052a"
],
"created_at": "2025-04-08T10:00:00+10:00",
"updated_at": "2025-04-08T14:30:00+10:00",
"latest_scan": {},
"status": "ready",
"last_run_at": "2025-04-01T02:00:00+10:00",
"notification_group": "3c90c3cc-0d44-4b50-8888-8dd25736052a"
}
]
Authentication token obtained via Altostrat platform login.
A list of scan schedules.
The response is of type object[]
.
curl --request GET \
--url https://api.altostrat.io/scans/cve/scheduled \
--header 'Authorization: Bearer <token>'
[
{
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"description": "<string>",
"day_of_week": 123,
"time_of_day": "02:00",
"every_n_weeks": 123,
"timezone": "<string>",
"min_cvss": 123,
"warning_threshold": 123,
"ignore_offline_sites": true,
"next_scan_at": "2025-05-05T02:00:00+10:00",
"running": true,
"sites": [
{
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"subnet": "<string>"
}
],
"notify": [
"3c90c3cc-0d44-4b50-8888-8dd25736052a"
],
"created_at": "2025-04-08T10:00:00+10:00",
"updated_at": "2025-04-08T14:30:00+10:00",
"latest_scan": {},
"status": "ready",
"last_run_at": "2025-04-01T02:00:00+10:00",
"notification_group": "3c90c3cc-0d44-4b50-8888-8dd25736052a"
}
]