DELETE
/
v1
/
notification_rules
/
{id}
curl --request DELETE \
  --url https://api.rootly.com/v1/notification_rules/{id} \
  --header 'Authorization: Bearer <token>'
{
  "data": {
    "id": "901590b9-6b57-48fe-bc98-d56db3228c89",
    "type": "user_notification_rules",
    "attributes": {
      "user_id": 516,
      "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-03-19T07:56:14.218-07:00",
      "updated_at": "2025-03-19T07:56:14.231-07:00"
    }
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

id
string
required

Response

200
application/vnd.api+json
user_notification_rule deleted
data
object
required

Was this page helpful?