Delete a specific alert routing rule by id
curl --request DELETE \
--url https://api.rootly.com/v1/alert_routing_rules/{id} \
--header 'Authorization: Bearer <token>'
{
"data": {
"id": "6af97bf0-a3a6-4e6d-998a-89efb35d19c9",
"type": "alert_routing_rules",
"attributes": {
"name": "Alert Routing Rule 2",
"alerts_source_id": "57f5e19e-7cf9-4db9-8560-1e149ef3e0ca",
"condition_type": "all",
"enabled": false,
"position": 1,
"destination": null,
"created_at": "2025-08-28T04:32:08.420-07:00",
"updated_at": "2025-08-28T04:32:11.888-07:00",
"destinations": [],
"conditions": []
},
"relationships": {
"owning_teams": {
"data": [
{
"id": "06d9f52f-238f-4fbd-86db-6a6f8ddc5fdc",
"type": "groups"
}
]
}
}
}
}
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Resource UUID
alert routing rule deleted
The response is of type object
.
Was this page helpful?
curl --request DELETE \
--url https://api.rootly.com/v1/alert_routing_rules/{id} \
--header 'Authorization: Bearer <token>'
{
"data": {
"id": "6af97bf0-a3a6-4e6d-998a-89efb35d19c9",
"type": "alert_routing_rules",
"attributes": {
"name": "Alert Routing Rule 2",
"alerts_source_id": "57f5e19e-7cf9-4db9-8560-1e149ef3e0ca",
"condition_type": "all",
"enabled": false,
"position": 1,
"destination": null,
"created_at": "2025-08-28T04:32:08.420-07:00",
"updated_at": "2025-08-28T04:32:11.888-07:00",
"destinations": [],
"conditions": []
},
"relationships": {
"owning_teams": {
"data": [
{
"id": "06d9f52f-238f-4fbd-86db-6a6f8ddc5fdc",
"type": "groups"
}
]
}
}
}
}