Altostrat Studio is here — the AI-native network operations IDE for engineers running production. Terminal, diagrams, runbooks, and Copilot in one workspace. Get started →
curl --request GET \
--url https://v1.api.altostrat.io/scans/cve/scheduled/{scanScheduleId} \
--header 'Authorization: Bearer <token>'{
"id": "9c43cc95-f313-49a3-b632-524f7a24503b",
"description": "Weekly Scan for Main Office",
"day_of_week": 1,
"time_of_day": "02:00",
"every_n_weeks": 2,
"timezone": "America/New_York",
"min_cvss": 4,
"warning_threshold": 7,
"ignore_offline_sites": false,
"next_scan_at": "2025-11-10T02:00:00-05:00",
"running": false,
"sites": [
{
"id": "9c3c1392-7f36-4240-85f2-273573c0384a",
"subnet": "192.168.1.0/24"
}
],
"created_at": "2025-10-28T14:30:00Z",
"updated_at": "2025-10-29T09:00:00Z",
"status": "ready",
"last_run_at": "2025-10-27T02:00:00-05:00",
"notification_group": "security-alerts"
}Fetches the details of a specific scan schedule by its unique identifier.
curl --request GET \
--url https://v1.api.altostrat.io/scans/cve/scheduled/{scanScheduleId} \
--header 'Authorization: Bearer <token>'{
"id": "9c43cc95-f313-49a3-b632-524f7a24503b",
"description": "Weekly Scan for Main Office",
"day_of_week": 1,
"time_of_day": "02:00",
"every_n_weeks": 2,
"timezone": "America/New_York",
"min_cvss": 4,
"warning_threshold": 7,
"ignore_offline_sites": false,
"next_scan_at": "2025-11-10T02:00:00-05:00",
"running": false,
"sites": [
{
"id": "9c3c1392-7f36-4240-85f2-273573c0384a",
"subnet": "192.168.1.0/24"
}
],
"created_at": "2025-10-28T14:30:00Z",
"updated_at": "2025-10-29T09:00:00Z",
"status": "ready",
"last_run_at": "2025-10-27T02:00:00-05:00",
"notification_group": "security-alerts"
}Documentation Index
Fetch the complete documentation index at: https://altostrat.io/docs/llms.txt
Use this file to discover all available pages before exploring further.
Enter your bearer token in the format: Bearer {token}
The unique identifier of the scan schedule.
"9c43cc95-f313-49a3-b632-524f7a24503b"
The requested scan schedule object.
The unique identifier for the scan schedule.
"9c43cc95-f313-49a3-b632-524f7a24503b"
A human-readable name for the scan schedule.
"Weekly Scan for Main Office"
The day of the week to run the scan (0=Sunday, 1=Monday, ..., 6=Saturday).
1
The time of day to run the scan in 24-hour format (HH:mm).
"02:00"
The frequency of the scan in weeks (e.g., 2 for every 2 weeks).
2
The timezone in which the time_of_day is specified.
"America/New_York"
The minimum CVSS score for a vulnerability to be included in reports.
4
The CVSS score at which a vulnerability is considered a high-priority warning.
7
If true, the scan will not fail if a site is offline.
false
The calculated timestamp for the next scheduled scan.
"2025-11-10T02:00:00-05:00"
Indicates if a scan for this schedule is currently in progress.
false
A list of sites and their subnets to be scanned.
Show child attributes
The timestamp when the schedule was created.
"2025-10-28T14:30:00Z"
The timestamp when the schedule was last updated.
"2025-10-29T09:00:00Z"
The current status of the scan schedule's lifecycle.
"ready"
The timestamp when a scan for this schedule was last initiated.
"2025-10-27T02:00:00-05:00"
The identifier for a notification group to receive scan alerts.
"security-alerts"
Was this page helpful?