GET
/
sla
/
schedules
/
{id}
curl --request GET \
  --url https://api.altostrat.io/sla/schedules/{id} \
  --header 'Authorization: Bearer <token>'
{
  "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "name": "<string>",
  "disabled": true,
  "daily": true,
  "weekly": true,
  "monthly": true,
  "day_of_week": "<string>",
  "day_of_month": 123,
  "sla_target": 123,
  "show_only_breached_sites_in_pdf": true,
  "calculate_sla_within_schedule_hours": true,
  "business_hours_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "sites": [
    "3c90c3cc-0d44-4b50-8888-8dd25736052a"
  ],
  "timezone": "<string>",
  "ignore_power_outages": true,
  "notification_group": "<string>",
  "created_at": "2023-11-07T05:31:56Z",
  "updated_at": "2023-11-07T05:31:56Z"
}

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

Response

200
application/json

OK. Returns the schedule if found.

The response is of type object.