Retrieves a specific escalation level by id
curl --request GET \
--url https://api.rootly.com/v1/escalation_levels/{id} \
--header 'Authorization: Bearer <token>'
{
"data": {
"id": "a4b9206c-4187-44ee-af03-8c73ca436a6d",
"type": "escalation_levels",
"attributes": {
"escalation_policy_path_id": null,
"position": 1,
"delay": 5,
"escalation_policy_id": "fe5d564b-8b2e-4504-b001-d1dcbdf0797f",
"paging_strategy_configuration_strategy": null,
"paging_strategy_configuration_schedule_strategy": null,
"created_at": "2025-08-01T11:05:58.007-07:00",
"updated_at": "2025-08-01T11:05:58.007-07:00",
"notification_target_params": [
{
"id": "117",
"type": "user",
"team_members": "all"
}
]
}
}
}
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
escalation level found
The response is of type object
.
Was this page helpful?
curl --request GET \
--url https://api.rootly.com/v1/escalation_levels/{id} \
--header 'Authorization: Bearer <token>'
{
"data": {
"id": "a4b9206c-4187-44ee-af03-8c73ca436a6d",
"type": "escalation_levels",
"attributes": {
"escalation_policy_path_id": null,
"position": 1,
"delay": 5,
"escalation_policy_id": "fe5d564b-8b2e-4504-b001-d1dcbdf0797f",
"paging_strategy_configuration_strategy": null,
"paging_strategy_configuration_schedule_strategy": null,
"created_at": "2025-08-01T11:05:58.007-07:00",
"updated_at": "2025-08-01T11:05:58.007-07:00",
"notification_target_params": [
{
"id": "117",
"type": "user",
"team_members": "all"
}
]
}
}
}