DELETE
/
v1
/
override_shifts
/
{id}
Delete an override shift
curl --request DELETE \
  --url https://api.rootly.com/v1/override_shifts/{id} \
  --header 'Authorization: Bearer <token>'
{
  "data": {
    "id": "e4a7f802-724b-4c87-a0a3-09580abb4c75",
    "type": "shifts",
    "attributes": {
      "schedule_id": "08551ae7-9f73-40e6-b514-1fd01dda8a42",
      "rotation_id": "17a10688-3c0f-4d8c-be38-75515519f8a0",
      "starts_at": "2025-07-28T23:40:40.000-07:00",
      "ends_at": "2025-07-29T07:40:40.000-07:00",
      "is_override": true
    },
    "relationships": {
      "shift_override": {
        "data": null
      },
      "user": {
        "data": {
          "id": "355",
          "type": "users"
        }
      }
    }
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

id
string
required

Response

200
application/vnd.api+json

override shift deleted

The response is of type object.