Delete a specific escalation path by id
curl --request DELETE \
--url https://api.rootly.com/v1/escalation_paths/{id} \
--header 'Authorization: Bearer <token>'
{
"data": {
"id": "d795ad8e-1569-42f0-a117-c075561f904a",
"type": "escalation_paths",
"attributes": {
"name": "Corporis minus facilis ut.",
"default": false,
"notification_type": "audible",
"escalation_policy_id": "23a68186-1e05-47b9-be68-aa456ac31ab8",
"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-07-17T12:07:44.688-07:00",
"updated_at": "2025-07-17T12:07:46.912-07:00",
"rules": [
{
"rule_type": "alert_urgency",
"urgency_ids": [
"1d32d24a-16ee-4d9a-ba96-465b4b23a7d1"
]
}
]
},
"relationships": {
"escalation_levels": {
"data": []
}
}
}
}
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
escalation path deleted
The response is of type object
.
Was this page helpful?
curl --request DELETE \
--url https://api.rootly.com/v1/escalation_paths/{id} \
--header 'Authorization: Bearer <token>'
{
"data": {
"id": "d795ad8e-1569-42f0-a117-c075561f904a",
"type": "escalation_paths",
"attributes": {
"name": "Corporis minus facilis ut.",
"default": false,
"notification_type": "audible",
"escalation_policy_id": "23a68186-1e05-47b9-be68-aa456ac31ab8",
"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-07-17T12:07:44.688-07:00",
"updated_at": "2025-07-17T12:07:46.912-07:00",
"rules": [
{
"rule_type": "alert_urgency",
"urgency_ids": [
"1d32d24a-16ee-4d9a-ba96-465b4b23a7d1"
]
}
]
},
"relationships": {
"escalation_levels": {
"data": []
}
}
}
}