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": "6075fa18-2002-4916-96eb-b1da4196b167",
"type": "schedules",
"attributes": {
"name": "Schedule 14",
"description": "Schedule description",
"all_time_coverage": false,
"slack_user_group": {},
"owner_user_id": 488,
"owner_group_ids": [
"e4489e5f-aceb-4a81-9171-89e0d3920dcd"
],
"created_at": "2025-10-30T10:29:49.815-07:00",
"updated_at": "2025-10-30T10:29:49.833-07:00"
},
"relationships": {
"owner_user": {
"data": {
"id": "488",
"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": "6075fa18-2002-4916-96eb-b1da4196b167",
"type": "schedules",
"attributes": {
"name": "Schedule 14",
"description": "Schedule description",
"all_time_coverage": false,
"slack_user_group": {},
"owner_user_id": 488,
"owner_group_ids": [
"e4489e5f-aceb-4a81-9171-89e0d3920dcd"
],
"created_at": "2025-10-30T10:29:49.815-07:00",
"updated_at": "2025-10-30T10:29:49.833-07:00"
},
"relationships": {
"owner_user": {
"data": {
"id": "488",
"type": "users"
}
},
"escalation_policies": {
"data": []
}
}
}
}