GET
/
v1
/
escalation_paths
/
{id}
curl --request GET \
  --url https://api.rootly.com/v1/escalation_paths/{id} \
  --header 'Authorization: Bearer <token>'
{
  "data": {
    "id": "93230878-6012-48bc-b686-f23e013c45bc",
    "type": "escalation_paths",
    "attributes": {
      "name": "Quas amet est laboriosam.",
      "default": false,
      "notification_type": "audible",
      "escalation_policy_id": "6783cc6a-cdb7-4ffd-a265-c8cdaecf23c8",
      "match_mode": "match-all-rules",
      "position": 1,
      "repeat": false,
      "repeat_count": 1,
      "initial_delay": 0,
      "created_at": "2025-05-08T00:18:07.124-07:00",
      "updated_at": "2025-05-08T00:18:07.124-07:00",
      "rules": [
        {
          "rule_type": "alert_urgency",
          "urgency_ids": [
            "3f53c3eb-0678-4952-b347-6ddf50c11bfd"
          ]
        }
      ]
    },
    "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

Query Parameters

include
enum<string>

comma separated if needed. eg: escalation_policy_levels

Available options:
escalation_policy_levels

Response

200
application/vnd.api+json
escalation path found

The response is of type object.