GET
/
sla
/
schedules
curl --request GET \
  --url https://api.altostrat.io/sla/schedules \
  --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.

Response

200
application/json

OK. Returns an array of SLA report schedules for the user.

The response is of type object[].