Retrieves a specific user notification rule by id
curl --request GET \
--url https://api.rootly.com/v1/notification_rules/{id} \
--header 'Authorization: Bearer <token>'
{
"data": {
"id": "5606f2b1-35e1-4274-9e87-6a53936aaa75",
"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-11T20:47:15.669-07:00",
"updated_at": "2025-08-11T20:47:15.677-07:00"
}
}
}
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
user_notification_rule found
The response is of type object
.
curl --request GET \
--url https://api.rootly.com/v1/notification_rules/{id} \
--header 'Authorization: Bearer <token>'
{
"data": {
"id": "5606f2b1-35e1-4274-9e87-6a53936aaa75",
"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-11T20:47:15.669-07:00",
"updated_at": "2025-08-11T20:47:15.677-07:00"
}
}
}