GET
/
v1
/
alert_groups
/
{id}
Retrieves an alert group
curl --request GET \
  --url https://api.rootly.com/v1/alert_groups/{id} \
  --header 'Authorization: Bearer <token>'
{
  "data": {
    "id": "1e7cedd2-41c4-4206-ac41-df01baf43e93",
    "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-07-11T12:21:26.673-07:00",
      "updated_at": "2025-07-11T12:21:26.673-07:00",
      "group_by_alert_title": false,
      "group_by_alert_urgency": false,
      "targets": [
        {
          "id": "2616ca1b-70bd-478d-a1f0-3da375321671",
          "target_type": "Service",
          "target_id": "5e36763b-0974-428e-b21f-5bfaa02e0434",
          "alert_group_id": "1e7cedd2-41c4-4206-ac41-df01baf43e93",
          "deleted_at": null,
          "created_at": "2025-07-11T12:21:26.674-07:00",
          "updated_at": "2025-07-11T12:21:26.674-07:00"
        }
      ],
      "attributes": []
    }
  }
}

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

alert group found

The response is of type object.