Delete a specific user notification rule by id
curl --request DELETE \
--url https://api.rootly.com/v1/notification_rules/{id} \
--header 'Authorization: Bearer <token>'
{
"data": {
"id": "c521b444-b0e6-48b3-bd0b-4613a1ff9e96",
"type": "user_notification_rules",
"attributes": {
"user_id": 493,
"delay": 1,
"position": 2,
"user_email_address_id": null,
"user_call_number_id": null,
"user_sms_number_id": null,
"user_device_id": null,
"enabled_contact_types": [
"email"
],
"created_at": "2025-08-05T10:46:40.545-07:00",
"updated_at": "2025-08-05T10:46:40.554-07:00"
}
}
}
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
user_notification_rule deleted
The response is of type object
.
curl --request DELETE \
--url https://api.rootly.com/v1/notification_rules/{id} \
--header 'Authorization: Bearer <token>'
{
"data": {
"id": "c521b444-b0e6-48b3-bd0b-4613a1ff9e96",
"type": "user_notification_rules",
"attributes": {
"user_id": 493,
"delay": 1,
"position": 2,
"user_email_address_id": null,
"user_call_number_id": null,
"user_sms_number_id": null,
"user_device_id": null,
"enabled_contact_types": [
"email"
],
"created_at": "2025-08-05T10:46:40.545-07:00",
"updated_at": "2025-08-05T10:46:40.554-07:00"
}
}
}