DELETE
/
v1
/
schedules
/
{id}
curl --request DELETE \
  --url https://api.rootly.com/v1/schedules/{id} \
  --header 'Authorization: Bearer <token>'
{
  "data": {
    "id": "39836e3a-3374-4be6-95bf-d099e08416b4",
    "type": "schedules",
    "attributes": {
      "name": "Schedule 10",
      "description": "Schedule description",
      "all_time_coverage": false,
      "slack_user_group": {},
      "owner_user_id": 411,
      "owner_group_ids": [
        "f67cb431-77a9-471b-b927-a94c86bece0f"
      ],
      "created_at": "2025-05-29T17:48:13.580-07:00",
      "updated_at": "2025-05-29T17:48:23.016-07:00"
    },
    "relationships": {
      "owner_user": {
        "data": {
          "id": "411",
          "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.