Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Path Parameters
Response
schedule found
Retrieves a specific schedule by id
curl --request GET \
--url https://api.rootly.com/v1/schedules/{id} \
--header 'Authorization: Bearer <token>'
{
"data": {
"id": "55f69068-185e-495a-bcf6-80d8338341b3",
"type": "schedules",
"attributes": {
"name": "Schedule 10",
"description": "Schedule description",
"all_time_coverage": false,
"slack_user_group": {},
"owner_user_id": 440,
"owner_group_ids": [
"d9841197-884f-4aea-8902-b25ec0fe9ed5"
],
"created_at": "2025-09-18T20:58:51.535-07:00",
"updated_at": "2025-09-18T20:58:51.553-07:00"
},
"relationships": {
"owner_user": {
"data": {
"id": "440",
"type": "users"
}
},
"escalation_policies": {
"data": []
}
}
}
}
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
schedule found
Show child attributes
Was this page helpful?
curl --request GET \
--url https://api.rootly.com/v1/schedules/{id} \
--header 'Authorization: Bearer <token>'
{
"data": {
"id": "55f69068-185e-495a-bcf6-80d8338341b3",
"type": "schedules",
"attributes": {
"name": "Schedule 10",
"description": "Schedule description",
"all_time_coverage": false,
"slack_user_group": {},
"owner_user_id": 440,
"owner_group_ids": [
"d9841197-884f-4aea-8902-b25ec0fe9ed5"
],
"created_at": "2025-09-18T20:58:51.535-07:00",
"updated_at": "2025-09-18T20:58:51.553-07:00"
},
"relationships": {
"owner_user": {
"data": {
"id": "440",
"type": "users"
}
},
"escalation_policies": {
"data": []
}
}
}
}