Delete a specific schedule rotation active day
curl --request DELETE \
--url https://api.rootly.com/v1/schedule_rotation_active_days/{id} \
--header 'Authorization: Bearer <token>'
{
"data": {
"id": "b3cf9d7c-8a4e-494e-b2dd-6213a0df4bf7",
"type": "schedule_rotation_active_days",
"attributes": {
"schedule_rotation_id": "4db08fd9-05a2-471c-894e-0d1bc0e156a9",
"day_name": "S",
"created_at": "2025-08-08T21:54:43.730-07:00",
"updated_at": "2025-08-08T21:54:45.002-07:00",
"active_time_attributes": []
}
}
}
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
schedule_rotation_active_day deleted
The response is of type object
.
Was this page helpful?
curl --request DELETE \
--url https://api.rootly.com/v1/schedule_rotation_active_days/{id} \
--header 'Authorization: Bearer <token>'
{
"data": {
"id": "b3cf9d7c-8a4e-494e-b2dd-6213a0df4bf7",
"type": "schedule_rotation_active_days",
"attributes": {
"schedule_rotation_id": "4db08fd9-05a2-471c-894e-0d1bc0e156a9",
"day_name": "S",
"created_at": "2025-08-08T21:54:43.730-07:00",
"updated_at": "2025-08-08T21:54:45.002-07:00",
"active_time_attributes": []
}
}
}