Skip to main content
GET
/
v1
/
schedules
/
{id}
Retrieves a schedule
curl --request GET \
  --url https://api.rootly.com/v1/schedules/{id} \
  --header 'Authorization: Bearer <token>'
{
  "data": {
    "id": "f9c02eef-fc2b-491b-9d6a-a57a0c26e0e8",
    "type": "schedules",
    "attributes": {
      "name": "Schedule 24",
      "description": "Schedule description",
      "all_time_coverage": false,
      "slack_user_group": {},
      "slack_channel": null,
      "owner_user_id": 536,
      "owner_group_ids": [
        "6cc44cb5-a24d-4555-8998-5a1478fb7856"
      ],
      "created_at": "2025-12-11T11:04:45.176-08:00",
      "updated_at": "2025-12-11T11:04:45.204-08:00"
    },
    "relationships": {
      "owner_user": {
        "data": {
          "id": "536",
          "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

schedule found

data
object
required