GET
/
v1
/
schedules
/
{id}
curl --request GET \
  --url https://api.rootly.com/v1/schedules/{id} \
  --header 'Authorization: Bearer <token>'
{
  "data": {
    "id": "aed49e6f-5c30-4702-ae25-fd09b2e72c48",
    "type": "schedules",
    "attributes": {
      "name": "Schedule 10",
      "description": "Schedule description",
      "all_time_coverage": false,
      "slack_user_group": {},
      "owner_user_id": 421,
      "owner_group_ids": [
        "98b3c340-54e1-49ef-9de2-8b68dadde4e7"
      ],
      "created_at": "2025-06-19T04:17:34.988-07:00",
      "updated_at": "2025-06-19T04:17:34.988-07:00"
    },
    "relationships": {
      "owner_user": {
        "data": {
          "id": "421",
          "type": "users"
        }
      },
      "escalation_policies": {
        "data": []
      }
    }
  }
}

Authorizations

Authorization
string
header
required

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

Path Parameters

id
string
required

Response

200
application/vnd.api+json

schedule found

The response is of type object.