update-group
Modify a group on a Miro board by updating its included item IDs. Input the board ID, group ID, and list of new item IDs to refresh the group content.
Instructions
Update a specific group on a Miro board with new items
Input Schema
| Name | Required | Description | Default | 
|---|---|---|---|
| boardId | Yes | ID of the board that contains the group | |
| data | Yes | Updated group data with item IDs to include in the group | |
| groupId | Yes | ID of the group that you want to update | 
Input Schema (JSON Schema)
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "additionalProperties": false,
  "properties": {
    "boardId": {
      "description": "ID of the board that contains the group",
      "type": "string"
    },
    "data": {
      "additionalProperties": false,
      "description": "Updated group data with item IDs to include in the group",
      "properties": {
        "items": {
          "description": "Updated list of item IDs to include in the group",
          "items": {
            "type": "string"
          },
          "type": "array"
        }
      },
      "required": [
        "items"
      ],
      "type": "object"
    },
    "groupId": {
      "description": "ID of the group that you want to update",
      "type": "string"
    }
  },
  "required": [
    "boardId",
    "groupId",
    "data"
  ],
  "type": "object"
}