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": "e07aa699-f0de-4b44-861e-89ec9bc9c45e",
"type": "shifts",
"attributes": {
"schedule_id": "37416664-6537-4701-a94d-8b0205ad70ba",
"rotation_id": "14f557e2-6cff-406b-9bd2-3fc724ebc637",
"starts_at": "2025-08-18T04:37:18.000-07:00",
"ends_at": "2025-08-18T12:37:18.000-07:00",
"is_override": true
},
"relationships": {
"shift_override": {
"data": null
},
"user": {
"data": {
"id": "355",
"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": "e07aa699-f0de-4b44-861e-89ec9bc9c45e",
"type": "shifts",
"attributes": {
"schedule_id": "37416664-6537-4701-a94d-8b0205ad70ba",
"rotation_id": "14f557e2-6cff-406b-9bd2-3fc724ebc637",
"starts_at": "2025-08-18T04:37:18.000-07:00",
"ends_at": "2025-08-18T12:37:18.000-07:00",
"is_override": true
},
"relationships": {
"shift_override": {
"data": null
},
"user": {
"data": {
"id": "355",
"type": "users"
}
}
}
}
}