Skip to main content
PATCH
/
v1
/
alert_groups
/
{id}
Update an alert group
curl --request PATCH \
  --url https://api.rootly.com/v1/alert_groups/{id} \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/vnd.api+json' \
  --data '{
  "data": {
    "type": "alert_groups",
    "attributes": {
      "name": "<string>",
      "description": "<string>",
      "time_window": 123,
      "targets": [
        {
          "target_type": "Group",
          "target_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a"
        }
      ],
      "attributes": [
        {
          "json_path": "<string>"
        }
      ],
      "group_by_alert_title": 1,
      "group_by_alert_urgency": 1,
      "condition_type": "all",
      "conditions": [
        {
          "property_field_type": "attribute",
          "property_field_name": "<string>",
          "property_field_condition_type": "is_one_of",
          "property_field_value": "<string>",
          "property_field_values": [
            "<string>"
          ],
          "alert_urgency_ids": [
            "<string>"
          ],
          "conditionable_type": "AlertField",
          "conditionable_id": "<string>"
        }
      ]
    }
  }
}'
{
  "data": {
    "id": "ae8afc15-1e6d-4cb4-a164-fc82a47c39c4",
    "type": "alert_groups",
    "attributes": {
      "name": "Group name updated",
      "slug": "123-test-group",
      "description": null,
      "time_window": 10,
      "condition_type": "any",
      "deleted_at": null,
      "created_at": "2025-10-28T10:19:13.593-07:00",
      "updated_at": "2025-10-28T10:19:14.737-07:00",
      "group_by_alert_title": false,
      "group_by_alert_urgency": false,
      "targets": [
        {
          "id": "220e8394-fd65-49b4-a961-45b9ea731391",
          "alert_group_id": "ae8afc15-1e6d-4cb4-a164-fc82a47c39c4",
          "created_at": "2025-10-28T10:19:13.594-07:00",
          "deleted_at": null,
          "target_id": "b343d4c0-97b8-4ee6-8517-a0b3fb72d6d7",
          "target_type": "Service",
          "updated_at": "2025-10-28T10:19:13.594-07:00"
        }
      ],
      "attributes": [],
      "conditions": [
        {
          "id": "bedd60cf-9b47-4a88-98c5-f41057b8639e",
          "property_field_condition_type": "is_one_of",
          "property_field_name": "description",
          "property_field_type": "attribute",
          "property_field_value": null,
          "property_field_values": [
            "Test description"
          ],
          "created_at": "2025-10-28T10:19:14.738-07:00",
          "updated_at": "2025-10-28T10:19:14.738-07:00",
          "conditionable_type": null,
          "conditionable_id": null
        },
        {
          "id": "ed023f61-2434-465a-89b2-a7bc0cea690f",
          "property_field_condition_type": "is_one_of",
          "property_field_name": "alert_urgency",
          "property_field_type": "attribute",
          "property_field_value": null,
          "property_field_values": [],
          "created_at": "2025-10-28T10:19:14.739-07:00",
          "updated_at": "2025-10-28T10:19:14.739-07:00",
          "conditionable_type": null,
          "conditionable_id": null,
          "values": [
            {
              "record_id": "f4b8ba7e-f1fb-4309-b3ea-857bd93b825f",
              "record_type": "AlertUrgency"
            }
          ]
        }
      ]
    }
  }
}

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

Body

application/vnd.api+json
data
object
required

Response

alert group updated with conditions

data
object
required