POST
/
sla
/
schedules
/
{id}
/
run
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
required

UUID of the schedule

Body

application/json

Dates to run the report from and to

The body is of type object.

Response

202

Accepted. The report job is queued.