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": "2da6cc00-c41b-4179-846e-48feca541478",
"type": "escalation_paths",
"attributes": {
"name": "Sed et odio temporibus.",
"default": false,
"notification_type": "audible",
"escalation_policy_id": "28e5f6e4-2433-42fa-94e3-9ef799996b57",
"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-21T23:42:34.696-07:00",
"updated_at": "2025-08-21T23:42:34.696-07:00",
"rules": [
{
"rule_type": "alert_urgency",
"urgency_ids": [
"c536f887-2b0a-4e65-9b1d-4d6fd3b6db29"
]
}
]
},
"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": "2da6cc00-c41b-4179-846e-48feca541478",
"type": "escalation_paths",
"attributes": {
"name": "Sed et odio temporibus.",
"default": false,
"notification_type": "audible",
"escalation_policy_id": "28e5f6e4-2433-42fa-94e3-9ef799996b57",
"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-21T23:42:34.696-07:00",
"updated_at": "2025-08-21T23:42:34.696-07:00",
"rules": [
{
"rule_type": "alert_urgency",
"urgency_ids": [
"c536f887-2b0a-4e65-9b1d-4d6fd3b6db29"
]
}
]
},
"relationships": {
"escalation_levels": {
"data": []
}
}
}
}