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": "336eb1e8-8fde-46f8-9b67-25bcc0055715",
    "type": "escalation_paths",
    "attributes": {
      "name": "Rerum veritatis nobis molestiae.",
      "default": false,
      "notification_type": "audible",
      "escalation_policy_id": "cedbd7de-76db-487a-aeda-f03184064f5f",
      "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-08-15T07:11:29.448-07:00",
      "updated_at": "2025-08-15T07:11:30.989-07:00",
      "rules": [
        {
          "rule_type": "alert_urgency",
          "urgency_ids": [
            "3b67d0a9-1d86-4bc2-8ae1-e35a965b1da7"
          ]
        }
      ]
    },
    "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.