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": "0da4d7e7-b138-4570-a095-9ff3eb431f0c",
"type": "schedule_rotation_active_days",
"attributes": {
"schedule_rotation_id": "213b2e68-6d9c-4926-9408-5687a6b036a1",
"day_name": "S",
"created_at": "2025-08-31T05:24:25.775-07:00",
"updated_at": "2025-08-31T05:24:26.843-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": "0da4d7e7-b138-4570-a095-9ff3eb431f0c",
"type": "schedule_rotation_active_days",
"attributes": {
"schedule_rotation_id": "213b2e68-6d9c-4926-9408-5687a6b036a1",
"day_name": "S",
"created_at": "2025-08-31T05:24:25.775-07:00",
"updated_at": "2025-08-31T05:24:26.843-07:00",
"active_time_attributes": []
}
}
}