Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Path Parameters
Resource UUID
Response
alert_group found by slug
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": "762b8c7d-fb96-4027-85d8-9690ae4d4b27",
"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-10-09T08:33:04.504-07:00",
"updated_at": "2025-10-09T08:33:04.504-07:00",
"group_by_alert_title": false,
"group_by_alert_urgency": false,
"targets": [
{
"id": "f6e1af16-0ee3-4c8a-b5fd-6de97c6919ee",
"alert_group_id": "762b8c7d-fb96-4027-85d8-9690ae4d4b27",
"created_at": "2025-10-09T08:33:04.506-07:00",
"deleted_at": null,
"target_id": "6bf53631-a7f2-4729-959d-5d0197dc54cc",
"target_type": "Service",
"updated_at": "2025-10-09T08:33:04.506-07: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
Was this page helpful?
curl --request GET \
--url https://api.rootly.com/v1/alert_groups/{id} \
--header 'Authorization: Bearer <token>'
{
"data": {
"id": "762b8c7d-fb96-4027-85d8-9690ae4d4b27",
"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-10-09T08:33:04.504-07:00",
"updated_at": "2025-10-09T08:33:04.504-07:00",
"group_by_alert_title": false,
"group_by_alert_urgency": false,
"targets": [
{
"id": "f6e1af16-0ee3-4c8a-b5fd-6de97c6919ee",
"alert_group_id": "762b8c7d-fb96-4027-85d8-9690ae4d4b27",
"created_at": "2025-10-09T08:33:04.506-07:00",
"deleted_at": null,
"target_id": "6bf53631-a7f2-4729-959d-5d0197dc54cc",
"target_type": "Service",
"updated_at": "2025-10-09T08:33:04.506-07:00"
}
],
"attributes": []
}
}
}