Skip to main content
POST
/
sla
/
schedules
/
{id}
/
run
Manually run an SLA schedule
curl --request POST \
  --url https://api.altostrat.io/sla/schedules/{id}/run \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "from_date": "2023-12-25",
  "to_date": "2023-12-25"
}'

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

id
string<uuid>
required

UUID of the schedule

Body

application/json

Dates to run the report from and to

from_date
string<date>
required

Start date in YYYY-MM-DD format

to_date
string<date>
required

End date in YYYY-MM-DD format

Response

Accepted. The report job is queued.

I