delete-group
Remove a specific group from a Miro board, with an option to delete or retain its items. Requires board and group IDs for precise identification.
Instructions
Delete a specific group from a Miro board
Input Schema
Name | Required | Description | Default |
---|---|---|---|
boardId | Yes | ID of the board that contains the group | |
deleteItems | No | Indicates whether the items should be removed. Set to true to delete items in the group, false to keep them | |
groupId | Yes | ID of the group that you want to delete |
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"
},
"deleteItems": {
"description": "Indicates whether the items should be removed. Set to true to delete items in the group, false to keep them",
"type": "boolean"
},
"groupId": {
"description": "ID of the group that you want to delete",
"type": "string"
}
},
"required": [
"boardId",
"groupId"
],
"type": "object"
}