GET
/
v1
/
escalation_paths
/
{id}
Retrieves an escalation path
curl --request GET \
  --url https://api.rootly.com/v1/escalation_paths/{id} \
  --header 'Authorization: Bearer <token>'
{
  "data": {
    "id": "d76f676d-99f6-4b0d-9fce-96980f2ff2d4",
    "type": "escalation_paths",
    "attributes": {
      "name": "Cupiditate est accusantium voluptate.",
      "default": false,
      "notification_type": "audible",
      "escalation_policy_id": "f39dfa69-661c-4393-ac42-a97185366727",
      "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-09-18T00:24:54.958-07:00",
      "updated_at": "2025-09-18T00:24:54.958-07:00",
      "rules": [
        {
          "rule_type": "alert_urgency",
          "urgency_ids": [
            "32d64014-ee9f-444e-8157-8dd241c41833"
          ]
        }
      ]
    },
    "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

escalation path found

data
object
required