Groups

Update group

PUT /api/v1/groups/{id}

Updates an existing group. Moving it to a new parent re-appends it to the end of the new sibling set.

Request Body

Accepts the same fields as create. Moving a group to a new parent_id re-appends it to the end of the new sibling set. A group that has subgroups cannot itself be nested.

Response

Returns the updated group object.

{
  "id": 7,
  "name": "Agency Clients",
  "description": "Everything billed monthly",
  "parent_id": null,
  "sort_order": 0,
  "monitors_count": 12,
  "created_at": "2026-08-21T14:02:11Z",
  "updated_at": "2026-08-21T14:02:11Z"
}