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": "e55f98d3-2c25-4e12-b7df-df2ae60db801",
    "type": "escalation_paths",
    "attributes": {
      "name": "Explicabo tempora est officia.",
      "default": false,
      "notification_type": "audible",
      "escalation_policy_id": "6e9157ed-36f9-49cd-92b5-43b198cb559a",
      "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-11T12:24:52.622-07:00",
      "updated_at": "2025-07-11T12:24:52.622-07:00",
      "rules": [
        {
          "rule_type": "alert_urgency",
          "urgency_ids": [
            "939258ec-b3b8-464f-b95e-f2e9ab715b97"
          ]
        }
      ]
    },
    "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.