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": "0f1d2d58-cd67-52cc-96bd-e376170b5a99",
    "type": "shifts",
    "attributes": {
      "schedule_id": "8885143d-154c-4e9a-bf6e-20c8878c8dd6",
      "rotation_id": "72ff8c79-84b3-4a96-9b83-a5549f1f4408",
      "starts_at": "2025-10-31T09:45:45.000-07:00",
      "ends_at": "2025-10-31T17:45:45.000-07:00",
      "is_override": true
    },
    "relationships": {
      "shift_override": {
        "data": null
      },
      "user": {
        "data": {
          "id": "404",
          "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": "0f1d2d58-cd67-52cc-96bd-e376170b5a99",
    "type": "shifts",
    "attributes": {
      "schedule_id": "8885143d-154c-4e9a-bf6e-20c8878c8dd6",
      "rotation_id": "72ff8c79-84b3-4a96-9b83-a5549f1f4408",
      "starts_at": "2025-10-31T09:45:45.000-07:00",
      "ends_at": "2025-10-31T17:45:45.000-07:00",
      "is_override": true
    },
    "relationships": {
      "shift_override": {
        "data": null
      },
      "user": {
        "data": {
          "id": "404",
          "type": "users"
        }
      }
    }
  }
}