Overview
Reference
- AlertEvents
- AlertGroups
- AlertUrgencies
- AlertSources
- Alerts
- Audits
- Authorizations
- CatalogEntities
- CatalogEntityProperties
- CatalogFields
- Catalogs
- Causes
- [DEPRECATED] CustomFieldOptions
- [DEPRECATED] CustomFields
- CustomForms
- DashboardPanels
- Dashboards
- Environments
- EscalationPolicies
- EscalationLevelsPolicies
- EscalationLevelsPath
- EscalationLevels
- EscalationPaths
- FormFieldOptions
- FormFieldPlacementConditions
- FormFieldPlacements
- FormFieldPositions
- FormFields
- FormSetConditions
- FormSets
- Functionalities
- WorkflowTasks
- [DEPRECATED] WorkflowCustomFieldSelections
- WorkflowFormFieldConditions
- WorkflowGroups
- WorkflowRuns
- Workflows
- Heartbeats
- IncidentActionItems
- [DEPRECATED] IncidentCustomFieldSelections
- IncidentEventFunctionalities
- IncidentEventServices
- IncidentEvents
- IncidentFeedbacks
- IncidentFormFieldSelections
- IncidentPermissionSetBooleans
- IncidentPermissionSetResources
- IncidentPermissionSets
- IncidentRetrospectives
- IncidentRetrospectiveSteps
- IncidentRoleTasks
- IncidentRoles
- IncidentStatusPageEvents
- IncidentSubStatuses
- IncidentTypes
- Incidents
- IpRanges
- LiveCallRouters
- OnCallRoles
- OnCallShadows
- OverrideShifts
- PlaybookTasks
- Playbooks
- RetrospectiveTemplates
- Pulses
- RetrospectiveConfigurations
- RetrospectiveProcessGroupSteps
- RetrospectiveProcessGroups
- RetrospectiveProcesses
- RetrospectiveSteps
- Roles
- ScheduleRotationActiveDays
- ScheduleRotationUsers
- ScheduleRotations
- Schedules
- Shifts
- Secrets
- Services
- Severities
- StatusPageTemplates
- StatusPages
- SubStatuses
- Teams
- UserNotificationRules
- Users
- WebhooksDeliveries
- WebhooksEndpoints
AlertGroups
Retrieves an alert group
AlertGroups
Retrieves an alert group
Retrieves a specific alert group by id
GET
/
v1
/
alert_groups
/
{id}
curl --request GET \
--url https://api.rootly.com/v1/alert_groups/%7Bid%7D \
--header 'Authorization: Bearer REPLACE_BEARER_TOKEN'
{
"data": {
"id": "c8d82406-0aa2-4b13-b877-d588d62c885c",
"type": "alert_groups",
"attributes": {
"name": "123 test group",
"slug": "123-test-group",
"description": null,
"time_window": 10,
"condition_type": "any",
"group_by_alert_title": false,
"group_by_alert_urgency": false,
"deleted_at": null,
"created_at": "2025-03-13T11:58:33.715-07:00",
"updated_at": "2025-03-13T11:58:33.715-07:00",
"targets": [
{
"id": "036fdbf7-161a-4491-8cc4-ab664a8e7490",
"target_type": "Service",
"target_id": "c28070cb-47d0-402e-8f43-9de265917a91",
"alert_group_id": "c8d82406-0aa2-4b13-b877-d588d62c885c",
"deleted_at": null,
"created_at": "2025-03-13T11:58:33.716-07:00",
"updated_at": "2025-03-13T11:58:33.716-07:00"
}
],
"attributes": []
}
}
}
Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Path Parameters
Response
200
application/vnd.api+json
alert group found
Unique ID of the alert group
Available options:
alert_groups
The name of the alert group
The description of the alert group
The slug of the alert group
Grouping condition for the alert group
Time window for the alert grouping
Whether the alerts are grouped by title or not
Whether the alerts are grouped by urgency or not
Date of creation
Date of last update
Date or deletion
Was this page helpful?
curl --request GET \
--url https://api.rootly.com/v1/alert_groups/%7Bid%7D \
--header 'Authorization: Bearer REPLACE_BEARER_TOKEN'
{
"data": {
"id": "c8d82406-0aa2-4b13-b877-d588d62c885c",
"type": "alert_groups",
"attributes": {
"name": "123 test group",
"slug": "123-test-group",
"description": null,
"time_window": 10,
"condition_type": "any",
"group_by_alert_title": false,
"group_by_alert_urgency": false,
"deleted_at": null,
"created_at": "2025-03-13T11:58:33.715-07:00",
"updated_at": "2025-03-13T11:58:33.715-07:00",
"targets": [
{
"id": "036fdbf7-161a-4491-8cc4-ab664a8e7490",
"target_type": "Service",
"target_id": "c28070cb-47d0-402e-8f43-9de265917a91",
"alert_group_id": "c8d82406-0aa2-4b13-b877-d588d62c885c",
"deleted_at": null,
"created_at": "2025-03-13T11:58:33.716-07:00",
"updated_at": "2025-03-13T11:58:33.716-07:00"
}
],
"attributes": []
}
}
}