Delete a specific alert urgency by id
curl --request DELETE \
--url https://api.rootly.com/v1/alert_urgencies/{id} \
--header 'Authorization: Bearer <token>'
{
"data": {
"id": "90e1a0ef-dba3-4571-ba6d-8ca048dc8df3",
"type": "alert_urgencies",
"attributes": {
"name": "qnqbn",
"description": "Et atque id illo.",
"position": 1,
"created_at": "2025-08-21T23:40:48.042-07:00",
"updated_at": "2025-08-21T23:40:50.746-07:00"
}
}
}
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
alert urgency deleted
The response is of type object
.
Was this page helpful?
curl --request DELETE \
--url https://api.rootly.com/v1/alert_urgencies/{id} \
--header 'Authorization: Bearer <token>'
{
"data": {
"id": "90e1a0ef-dba3-4571-ba6d-8ca048dc8df3",
"type": "alert_urgencies",
"attributes": {
"name": "qnqbn",
"description": "Et atque id illo.",
"position": 1,
"created_at": "2025-08-21T23:40:48.042-07:00",
"updated_at": "2025-08-21T23:40:50.746-07:00"
}
}
}