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": "0b7479dd-876b-4775-9e38-5ee4c5d051ed",
    "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-09-10T22:58:05.200-07:00",
      "updated_at": "2025-09-10T22:58:05.200-07:00",
      "group_by_alert_title": false,
      "group_by_alert_urgency": false,
      "targets": [
        {
          "id": "b6204883-3515-4f2b-9e52-3e355921513c",
          "alert_group_id": "0b7479dd-876b-4775-9e38-5ee4c5d051ed",
          "created_at": "2025-09-10T22:58:05.201-07:00",
          "deleted_at": null,
          "target_id": "c4c841ae-919c-4a14-924d-8d527b612664",
          "target_type": "Service",
          "updated_at": "2025-09-10T22:58:05.201-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
required

Resource UUID

Response

alert_group found by slug

The response is of type object.