Retrieves a specific schedule rotation active day by id
curl --request GET \
--url https://api.rootly.com/v1/schedule_rotation_active_days/{id} \
--header 'Authorization: Bearer <token>'
{
"data": {
"id": "61323692-a630-42d8-b4f9-7c11f13bf668",
"type": "schedule_rotation_active_days",
"attributes": {
"schedule_rotation_id": "f0ccb70f-3e5e-4f8d-98f3-233b0d81445b",
"day_name": "S",
"created_at": "2025-09-10T23:04:13.512-07:00",
"updated_at": "2025-09-10T23:04:13.512-07:00",
"active_time_attributes": []
}
}
}
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
schedule_rotation_active_day found
The response is of type object
.
curl --request GET \
--url https://api.rootly.com/v1/schedule_rotation_active_days/{id} \
--header 'Authorization: Bearer <token>'
{
"data": {
"id": "61323692-a630-42d8-b4f9-7c11f13bf668",
"type": "schedule_rotation_active_days",
"attributes": {
"schedule_rotation_id": "f0ccb70f-3e5e-4f8d-98f3-233b0d81445b",
"day_name": "S",
"created_at": "2025-09-10T23:04:13.512-07:00",
"updated_at": "2025-09-10T23:04:13.512-07:00",
"active_time_attributes": []
}
}
}