Retrieves a specific escalation path by id
curl --request GET \
--url https://api.rootly.com/v1/escalation_paths/{id} \
--header 'Authorization: Bearer <token>'
{
"data": {
"id": "ad8bbb3d-19bb-427e-98e9-31113435a3f4",
"type": "escalation_paths",
"attributes": {
"name": "Corrupti ad iusto veniam.",
"default": false,
"notification_type": "audible",
"escalation_policy_id": "2c4f3a3f-f4d1-42ae-9267-3f8f005f2f9e",
"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-01T21:46:42.238-07:00",
"updated_at": "2025-08-01T21:46:42.238-07:00",
"rules": [
{
"rule_type": "alert_urgency",
"urgency_ids": [
"95766727-b6a9-4b97-b1cc-739d39cd26be"
]
}
]
},
"relationships": {
"escalation_levels": {
"data": []
}
}
}
}
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
comma separated if needed. eg: escalation_policy_levels
escalation_policy_levels
escalation path found
The response is of type object
.
Was this page helpful?
curl --request GET \
--url https://api.rootly.com/v1/escalation_paths/{id} \
--header 'Authorization: Bearer <token>'
{
"data": {
"id": "ad8bbb3d-19bb-427e-98e9-31113435a3f4",
"type": "escalation_paths",
"attributes": {
"name": "Corrupti ad iusto veniam.",
"default": false,
"notification_type": "audible",
"escalation_policy_id": "2c4f3a3f-f4d1-42ae-9267-3f8f005f2f9e",
"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-01T21:46:42.238-07:00",
"updated_at": "2025-08-01T21:46:42.238-07:00",
"rules": [
{
"rule_type": "alert_urgency",
"urgency_ids": [
"95766727-b6a9-4b97-b1cc-739d39cd26be"
]
}
]
},
"relationships": {
"escalation_levels": {
"data": []
}
}
}
}