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": "b7f25a86-2dd4-425a-990d-f928b4005e87",
"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-01T01:53:50.744-07:00",
"updated_at": "2025-08-01T01:53:50.744-07:00",
"group_by_alert_title": false,
"group_by_alert_urgency": false,
"targets": [
{
"id": "e960c757-fbd3-469f-8398-46660c7f5b65",
"alert_group_id": "b7f25a86-2dd4-425a-990d-f928b4005e87",
"created_at": "2025-08-01T01:53:50.746-07:00",
"deleted_at": null,
"target_id": "38a47b91-23fa-4b65-99ee-1aaefc0aba9c",
"target_type": "Service",
"updated_at": "2025-08-01T01:53:50.746-07:00"
}
],
"attributes": []
}
}
}
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
alert group found
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": "b7f25a86-2dd4-425a-990d-f928b4005e87",
"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-01T01:53:50.744-07:00",
"updated_at": "2025-08-01T01:53:50.744-07:00",
"group_by_alert_title": false,
"group_by_alert_urgency": false,
"targets": [
{
"id": "e960c757-fbd3-469f-8398-46660c7f5b65",
"alert_group_id": "b7f25a86-2dd4-425a-990d-f928b4005e87",
"created_at": "2025-08-01T01:53:50.746-07:00",
"deleted_at": null,
"target_id": "38a47b91-23fa-4b65-99ee-1aaefc0aba9c",
"target_type": "Service",
"updated_at": "2025-08-01T01:53:50.746-07:00"
}
],
"attributes": []
}
}
}