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": "62d368df-a0d6-4eee-93e9-46f25c0d9fd4",
"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-08-21T23:29:38.720-07:00",
"updated_at": "2025-08-21T23:29:38.720-07:00",
"group_by_alert_title": false,
"group_by_alert_urgency": false,
"targets": [
{
"id": "c7e0a54c-571c-4ae5-a170-7167093f2a05",
"alert_group_id": "62d368df-a0d6-4eee-93e9-46f25c0d9fd4",
"created_at": "2025-08-21T23:29:38.721-07:00",
"deleted_at": null,
"target_id": "9e22334b-4046-4dc2-9fb8-31e43f1754b5",
"target_type": "Service",
"updated_at": "2025-08-21T23:29:38.721-07:00"
}
],
"attributes": []
}
}
}
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Resource UUID
alert_group found by slug
The response is of type object
.
Was this page helpful?
curl --request GET \
--url https://api.rootly.com/v1/alert_groups/{id} \
--header 'Authorization: Bearer <token>'
{
"data": {
"id": "62d368df-a0d6-4eee-93e9-46f25c0d9fd4",
"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-08-21T23:29:38.720-07:00",
"updated_at": "2025-08-21T23:29:38.720-07:00",
"group_by_alert_title": false,
"group_by_alert_urgency": false,
"targets": [
{
"id": "c7e0a54c-571c-4ae5-a170-7167093f2a05",
"alert_group_id": "62d368df-a0d6-4eee-93e9-46f25c0d9fd4",
"created_at": "2025-08-21T23:29:38.721-07:00",
"deleted_at": null,
"target_id": "9e22334b-4046-4dc2-9fb8-31e43f1754b5",
"target_type": "Service",
"updated_at": "2025-08-21T23:29:38.721-07:00"
}
],
"attributes": []
}
}
}