DELETE
/
v1
/
override_shifts
/
{id}
curl --request DELETE \
  --url https://api.rootly.com/v1/override_shifts/{id} \
  --header 'Authorization: Bearer <token>'
{
  "data": {
    "id": "0924858f-ecb0-4491-97a1-b4ce09252555",
    "type": "shifts",
    "attributes": {
      "schedule_id": "924d666b-2901-414d-9c32-6c4abd1ed91d",
      "rotation_id": "a342b855-8118-47f2-94f3-efe84339ac47",
      "starts_at": "2025-07-08T19:19:03.000-07:00",
      "ends_at": "2025-07-09T03:19:03.000-07:00",
      "is_override": true
    },
    "relationships": {
      "shift_override": {
        "data": null
      },
      "user": {
        "data": {
          "id": "354",
          "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.