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": "70376b7b-8659-4476-b091-2e37a1790db9",
"type": "schedule_rotation_active_days",
"attributes": {
"schedule_rotation_id": "e3e18182-fa1b-4630-a578-3ffc3bceb2cd",
"day_name": "S",
"created_at": "2025-07-17T10:46:49.977-07:00",
"updated_at": "2025-07-17T10:46:51.966-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": "70376b7b-8659-4476-b091-2e37a1790db9",
"type": "schedule_rotation_active_days",
"attributes": {
"schedule_rotation_id": "e3e18182-fa1b-4630-a578-3ffc3bceb2cd",
"day_name": "S",
"created_at": "2025-07-17T10:46:49.977-07:00",
"updated_at": "2025-07-17T10:46:51.966-07:00",
"active_time_attributes": []
}
}
}