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": "967715c7-0415-4c9e-a033-4a9af8adf459",
"type": "schedule_rotation_active_days",
"attributes": {
"schedule_rotation_id": "b29f3b57-1074-43d7-aec5-56a39a8056f6",
"day_name": "S",
"created_at": "2025-08-01T15:00:40.337-07:00",
"updated_at": "2025-08-01T15:00:40.337-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": "967715c7-0415-4c9e-a033-4a9af8adf459",
"type": "schedule_rotation_active_days",
"attributes": {
"schedule_rotation_id": "b29f3b57-1074-43d7-aec5-56a39a8056f6",
"day_name": "S",
"created_at": "2025-08-01T15:00:40.337-07:00",
"updated_at": "2025-08-01T15:00:40.337-07:00",
"active_time_attributes": []
}
}
}