GET
/
v1
/
schedules
/
{id}
curl --request GET \
  --url https://api.rootly.com/v1/schedules/{id} \
  --header 'Authorization: Bearer <token>'
{
  "data": {
    "id": "b5f5b7c5-420e-4b2a-b97b-0a1cc67cd885",
    "type": "schedules",
    "attributes": {
      "name": "Schedule 10",
      "description": "Schedule description",
      "all_time_coverage": false,
      "slack_user_group": {},
      "owner_user_id": 423,
      "owner_group_ids": [
        "708aa2af-9041-4909-beda-f441a6d022d3"
      ],
      "created_at": "2025-07-09T09:12:45.195-07:00",
      "updated_at": "2025-07-09T09:12:45.195-07:00"
    },
    "relationships": {
      "owner_user": {
        "data": {
          "id": "423",
          "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.