create-group
Organize Miro board items into groups by specifying the board ID and item IDs to streamline collaboration and enhance visual clarity.
Instructions
Create a new group on a Miro board
Input Schema
Name | Required | Description | Default |
---|---|---|---|
boardId | Yes | ID of the board where the group will be created | |
data | Yes | Group data with item IDs to include in the group |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"boardId": {
"description": "ID of the board where the group will be created",
"type": "string"
},
"data": {
"additionalProperties": false,
"description": "Group data with item IDs to include in the group",
"properties": {
"items": {
"description": "List of item IDs to include in the group",
"items": {
"type": "string"
},
"type": "array"
}
},
"required": [
"items"
],
"type": "object"
}
},
"required": [
"boardId",
"data"
],
"type": "object"
}