Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Path Parameters
Response
override shift deleted
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": "d05cb201-06c9-50bb-858d-94cc81e708e0",
"type": "shifts",
"attributes": {
"schedule_id": "cf4e01a9-48aa-45c1-b4a0-0e0c443e8684",
"rotation_id": "b11975dc-31a1-49a4-b10a-e5315f6fedd0",
"starts_at": "2025-10-07T22:38:26.000-07:00",
"ends_at": "2025-10-08T06:38:26.000-07:00",
"is_override": true
},
"relationships": {
"shift_override": {
"data": null
},
"user": {
"data": {
"id": "397",
"type": "users"
}
}
}
}
}
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
override shift deleted
Show child attributes
Was this page helpful?
curl --request DELETE \
--url https://api.rootly.com/v1/override_shifts/{id} \
--header 'Authorization: Bearer <token>'
{
"data": {
"id": "d05cb201-06c9-50bb-858d-94cc81e708e0",
"type": "shifts",
"attributes": {
"schedule_id": "cf4e01a9-48aa-45c1-b4a0-0e0c443e8684",
"rotation_id": "b11975dc-31a1-49a4-b10a-e5315f6fedd0",
"starts_at": "2025-10-07T22:38:26.000-07:00",
"ends_at": "2025-10-08T06:38:26.000-07:00",
"is_override": true
},
"relationships": {
"shift_override": {
"data": null
},
"user": {
"data": {
"id": "397",
"type": "users"
}
}
}
}
}