DELETE
/
v1
/
escalation_paths
/
{id}
Delete an escalation path
curl --request DELETE \
  --url https://api.rootly.com/v1/escalation_paths/{id} \
  --header 'Authorization: Bearer <token>'
{
  "data": {
    "id": "8c610f16-ac42-4752-8351-b24a27a6ce84",
    "type": "escalation_paths",
    "attributes": {
      "name": "Error maiores quod voluptatem.",
      "default": false,
      "notification_type": "audible",
      "escalation_policy_id": "3c712a36-eb26-4b6e-b079-2733919b1bc9",
      "match_mode": "match-all-rules",
      "position": 1,
      "repeat": false,
      "repeat_count": 1,
      "initial_delay": 0,
      "time_restriction_time_zone": null,
      "time_restrictions": [],
      "created_at": "2025-07-25T22:36:27.788-07:00",
      "updated_at": "2025-07-25T22:36:29.858-07:00",
      "rules": [
        {
          "rule_type": "alert_urgency",
          "urgency_ids": [
            "80df4f7f-0537-4eaf-9e7c-297f9a82a780"
          ]
        }
      ]
    },
    "relationships": {
      "escalation_levels": {
        "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

escalation path deleted

The response is of type object.