delete-mindmap-node
Remove a specific mind map node from a Miro board using the board and node IDs to streamline and organize your visual workspace effectively.
Instructions
Delete a mind map node from a Miro board
Input Schema
Name | Required | Description | Default |
---|---|---|---|
boardId | Yes | Unique identifier (ID) of the board from which you want to delete the mind map node | |
itemId | Yes | Unique identifier (ID) of the mind map node that you want to delete |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"boardId": {
"description": "Unique identifier (ID) of the board from which you want to delete the mind map node",
"type": "string"
},
"itemId": {
"description": "Unique identifier (ID) of the mind map node that you want to delete",
"type": "string"
}
},
"required": [
"boardId",
"itemId"
],
"type": "object"
}