GET
/
v1
/
schedules
/
{id}
curl --request GET \
  --url https://api.rootly.com/v1/schedules/{id} \
  --header 'Authorization: Bearer <token>'
{
  "data": {
    "id": "458a3424-78d1-4d70-b140-1f2a7a7349ec",
    "type": "schedules",
    "attributes": {
      "name": "Schedule 10",
      "description": "Schedule description",
      "all_time_coverage": false,
      "slack_user_group": {},
      "owner_user_id": 410,
      "owner_group_ids": [
        "4bea78d9-7ceb-4f65-bafe-5a1ef94e183b"
      ],
      "created_at": "2025-04-18T09:52:36.009-07:00",
      "updated_at": "2025-04-18T09:52:36.009-07:00"
    },
    "relationships": {
      "owner_user": {
        "data": {
          "id": "410",
          "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
data
object
required