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": "8c11408a-da51-48fd-873b-c7285e5f3af3",
"type": "escalation_paths",
"attributes": {
"name": "Omnis perspiciatis hic placeat.",
"default": false,
"notification_type": "audible",
"escalation_policy_id": "2140ad08-431d-4a37-99b1-1233b490a72b",
"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-11T06:56:39.359-07:00",
"updated_at": "2025-09-11T06:56:39.359-07:00",
"rules": [
{
"rule_type": "alert_urgency",
"urgency_ids": [
"fef40fa2-72c1-409b-b58e-b15e9e6e61e5"
]
}
]
},
"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": "8c11408a-da51-48fd-873b-c7285e5f3af3",
"type": "escalation_paths",
"attributes": {
"name": "Omnis perspiciatis hic placeat.",
"default": false,
"notification_type": "audible",
"escalation_policy_id": "2140ad08-431d-4a37-99b1-1233b490a72b",
"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-11T06:56:39.359-07:00",
"updated_at": "2025-09-11T06:56:39.359-07:00",
"rules": [
{
"rule_type": "alert_urgency",
"urgency_ids": [
"fef40fa2-72c1-409b-b58e-b15e9e6e61e5"
]
}
]
},
"relationships": {
"escalation_levels": {
"data": []
}
}
}
}