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 POST \
--url https://v1.api.altostrat.io/reports/sla/schedules/{scheduleId}/run \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"from_date": "2025-10-01",
"to_date": "2025-10-31"
}
'{
"message": "Report is being generated."
}Triggers an immediate, on-demand generation of a report for a specified date range. This does not affect the regular schedule. The report generation is asynchronous and the result will appear in the Generated Reports list when complete.
curl --request POST \
--url https://v1.api.altostrat.io/reports/sla/schedules/{scheduleId}/run \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"from_date": "2025-10-01",
"to_date": "2025-10-31"
}
'{
"message": "Report is being generated."
}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 authentication token.
The unique identifier for the SLA report schedule to run, prefixed with sla_.
^sla_[0-9a-zA-Z]{27}$"sla_2ayc4Yy6w3g7Y2j4g4g4Yy6w3g7"
The date range for the on-demand report.
Specifies the date range for an on-demand report run.
The start date for the report data (inclusive), in YYYY-MM-DD format. Must be before to_date and before tomorrow.
"2025-10-01"
The end date for the report data (inclusive), in YYYY-MM-DD format. Must be after from_date and before tomorrow.
"2025-10-31"
Accepted. The report generation has been queued successfully.
"Report is being generated."
Was this page helpful?