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": "8c610f16-ac42-4752-8351-b24a27a6ce84",
"type": "escalation_paths",
"attributes": {
"name": "Error maiores quod voluptatem.",
"default": false,
"notification_type": "audible",
"escalation_policy_id": "3c712a36-eb26-4b6e-b079-2733919b1bc9",
"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-25T22:36:27.788-07:00",
"updated_at": "2025-07-25T22:36:29.858-07:00",
"rules": [
{
"rule_type": "alert_urgency",
"urgency_ids": [
"80df4f7f-0537-4eaf-9e7c-297f9a82a780"
]
}
]
},
"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": "8c610f16-ac42-4752-8351-b24a27a6ce84",
"type": "escalation_paths",
"attributes": {
"name": "Error maiores quod voluptatem.",
"default": false,
"notification_type": "audible",
"escalation_policy_id": "3c712a36-eb26-4b6e-b079-2733919b1bc9",
"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-25T22:36:27.788-07:00",
"updated_at": "2025-07-25T22:36:29.858-07:00",
"rules": [
{
"rule_type": "alert_urgency",
"urgency_ids": [
"80df4f7f-0537-4eaf-9e7c-297f9a82a780"
]
}
]
},
"relationships": {
"escalation_levels": {
"data": []
}
}
}
}