Delete a specific alert route by id
curl --request DELETE \
--url https://api.rootly.com/v1/alert_routes/{id} \
--header 'Authorization: Bearer <token>'
{
"data": {
"id": "e7d1b79d-8a62-4e12-9752-841dad020ab8",
"type": "alert_route",
"attributes": {
"deleted": true
}
}
}
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
alert route deleted
The response is of type object
.
Was this page helpful?
curl --request DELETE \
--url https://api.rootly.com/v1/alert_routes/{id} \
--header 'Authorization: Bearer <token>'
{
"data": {
"id": "e7d1b79d-8a62-4e12-9752-841dad020ab8",
"type": "alert_route",
"attributes": {
"deleted": true
}
}
}