Delete a specific escalation level by id
curl --request DELETE \
--url https://api.rootly.com/v1/escalation_levels/{id} \
--header 'Authorization: Bearer <token>'
{
"data": {
"id": "3a280300-cb3f-4dec-be12-242d99dfdbb5",
"type": "escalation_levels",
"attributes": {
"escalation_policy_path_id": null,
"position": 1,
"delay": 5,
"escalation_policy_id": "f87cf6b4-5480-4db1-90ee-5baec2815f97",
"paging_strategy_configuration_strategy": null,
"paging_strategy_configuration_schedule_strategy": null,
"created_at": "2025-08-01T21:46:36.747-07:00",
"updated_at": "2025-08-01T21:46:40.652-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 deleted
The response is of type object
.
Was this page helpful?
curl --request DELETE \
--url https://api.rootly.com/v1/escalation_levels/{id} \
--header 'Authorization: Bearer <token>'
{
"data": {
"id": "3a280300-cb3f-4dec-be12-242d99dfdbb5",
"type": "escalation_levels",
"attributes": {
"escalation_policy_path_id": null,
"position": 1,
"delay": 5,
"escalation_policy_id": "f87cf6b4-5480-4db1-90ee-5baec2815f97",
"paging_strategy_configuration_strategy": null,
"paging_strategy_configuration_schedule_strategy": null,
"created_at": "2025-08-01T21:46:36.747-07:00",
"updated_at": "2025-08-01T21:46:40.652-07:00",
"notification_target_params": [
{
"id": "117",
"type": "user",
"team_members": "all"
}
]
}
}
}