DELETE
/
v1
/
schedules
/
{id}
curl --request DELETE \
  --url https://api.rootly.com/v1/schedules/{id} \
  --header 'Authorization: Bearer <token>'
{
  "data": {
    "id": "7b0cace6-2750-43e7-8232-6d8e1551c143",
    "type": "schedules",
    "attributes": {
      "name": "Schedule 10",
      "description": "Schedule description",
      "all_time_coverage": false,
      "slack_user_group": {},
      "owner_user_id": 421,
      "owner_group_ids": [
        "a0072d71-c9ce-493a-af08-accd13bc4ad3"
      ],
      "created_at": "2025-06-19T02:43:43.130-07:00",
      "updated_at": "2025-06-19T02:43:50.032-07:00"
    },
    "relationships": {
      "owner_user": {
        "data": {
          "id": "421",
          "type": "users"
        }
      },
      "escalation_policies": {
        "data": []
      }
    }
  }
}

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

schedule deleted

The response is of type object.