Retrieves a specific alert group by id
curl --request GET \
--url https://api.rootly.com/v1/alert_groups/{id} \
--header 'Authorization: Bearer <token>'{
"data": {
"id": "5ba843bd-2e52-4be0-98c2-7876349af0ea",
"type": "alert_groups",
"attributes": {
"name": "123 test group",
"slug": "123-test-group",
"description": null,
"time_window": 10,
"condition_type": "any",
"deleted_at": null,
"created_at": "2025-12-09T22:48:49.947-08:00",
"updated_at": "2025-12-09T22:48:49.947-08:00",
"group_by_alert_title": false,
"group_by_alert_urgency": false,
"targets": [
{
"id": "8e5da81b-e983-494b-b7d2-16e63339ee60",
"alert_group_id": "5ba843bd-2e52-4be0-98c2-7876349af0ea",
"created_at": "2025-12-09T22:48:49.951-08:00",
"deleted_at": null,
"target_id": "02de4842-ddad-45a8-bf3b-37ff4a41a9a4",
"target_type": "Service",
"updated_at": "2025-12-09T22:48:49.951-08:00"
}
],
"attributes": []
}
}
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Resource UUID
alert_group found by slug
Show child attributes
Unique ID of the alert group
alert_groups Show child attributes
The name of the alert group
The description of the alert group
The slug of the alert group
Grouping condition for the alert group
Time window for the alert grouping
Date of creation
Date of last update
Date or deletion
Whether the alerts are grouped by title or not
Whether the alerts are grouped by urgency or not
The conditions for the alert group
Show child attributes
The type of the property field
attribute, payload, alert_field The condition type of the property field
is_one_of, is_not_one_of, contains, does_not_contain, starts_with, ends_with, matches_regex, is_empty, matches_existing_alert The name of the property field. If the property field type is selected as 'attribute', then the allowed property field names are 'summary' (for Title), 'description', 'alert_urgency' and 'external_url' (for Alert Source URL). If the property field type is selected as 'payload', then the property field name should be supplied in JSON Path syntax.
The value of the property field. Can be null if the property field condition type is 'is_one_of' or 'is_not_one_of'
The values of the property field. Used if the property field condition type is 'is_one_of' or 'is_not_one_of' except for when property field name is 'alert_urgency'
The Alert Urgency ID's to check in the condition. Only need to be set when the property field type is 'attribute', the property field name is 'alert_urgency' and the property field condition type is 'is_one_of' or 'is_not_one_of'
The type of the conditionable
AlertField The ID of the conditionable. If conditionable_type is AlertField, this is the ID of the alert field.
Was this page helpful?
curl --request GET \
--url https://api.rootly.com/v1/alert_groups/{id} \
--header 'Authorization: Bearer <token>'{
"data": {
"id": "5ba843bd-2e52-4be0-98c2-7876349af0ea",
"type": "alert_groups",
"attributes": {
"name": "123 test group",
"slug": "123-test-group",
"description": null,
"time_window": 10,
"condition_type": "any",
"deleted_at": null,
"created_at": "2025-12-09T22:48:49.947-08:00",
"updated_at": "2025-12-09T22:48:49.947-08:00",
"group_by_alert_title": false,
"group_by_alert_urgency": false,
"targets": [
{
"id": "8e5da81b-e983-494b-b7d2-16e63339ee60",
"alert_group_id": "5ba843bd-2e52-4be0-98c2-7876349af0ea",
"created_at": "2025-12-09T22:48:49.951-08:00",
"deleted_at": null,
"target_id": "02de4842-ddad-45a8-bf3b-37ff4a41a9a4",
"target_type": "Service",
"updated_at": "2025-12-09T22:48:49.951-08:00"
}
],
"attributes": []
}
}
}