Retrieves a specific schedule by id
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": []
}
}
}
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
schedule found
Show child attributes
Unique id of schedule
schedules Show child attributes
The name of the schedule
Date of creation
Date of last update
The description of the schedule
24/7 coverage of the schedule
Owning teams.
ID of user assigned as owner of the schedule
Was this page helpful?
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": []
}
}
}
}