Delete a specific override shift by id
curl --request DELETE \
--url https://api.rootly.com/v1/override_shifts/{id} \
--header 'Authorization: Bearer <token>'
{
"data": {
"id": "3c922781-9fa3-4f3e-9985-bf0304eaeffe",
"type": "shifts",
"attributes": {
"schedule_id": "4dc335e5-1f33-4dfc-b00f-b1d6f1990fd4",
"rotation_id": "a681ab34-bf1e-429a-abda-cd127bef72b5",
"starts_at": "2025-09-07T12:23:21.000-07:00",
"ends_at": "2025-09-07T20:23:21.000-07:00",
"is_override": true
},
"relationships": {
"shift_override": {
"data": null
},
"user": {
"data": {
"id": "371",
"type": "users"
}
}
}
}
}
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
override shift deleted
The response is of type object
.
Was this page helpful?
curl --request DELETE \
--url https://api.rootly.com/v1/override_shifts/{id} \
--header 'Authorization: Bearer <token>'
{
"data": {
"id": "3c922781-9fa3-4f3e-9985-bf0304eaeffe",
"type": "shifts",
"attributes": {
"schedule_id": "4dc335e5-1f33-4dfc-b00f-b1d6f1990fd4",
"rotation_id": "a681ab34-bf1e-429a-abda-cd127bef72b5",
"starts_at": "2025-09-07T12:23:21.000-07:00",
"ends_at": "2025-09-07T20:23:21.000-07:00",
"is_override": true
},
"relationships": {
"shift_override": {
"data": null
},
"user": {
"data": {
"id": "371",
"type": "users"
}
}
}
}
}