update-item-position
Modify the position or parent of an item on a Miro board by specifying new coordinates or a parent ID. Use board and item IDs to identify and update the target item.
Instructions
Update the position or parent of a specific item on a Miro board
Input Schema
Name | Required | Description | Default |
---|---|---|---|
boardId | Yes | Unique identifier (ID) of the board that contains the item | |
itemId | Yes | Unique identifier (ID) of the item that you want to update | |
parentId | No | Unique identifier (ID) of the new parent item | |
position | No | New position coordinates for the item |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"boardId": {
"description": "Unique identifier (ID) of the board that contains the item",
"type": "string"
},
"itemId": {
"description": "Unique identifier (ID) of the item that you want to update",
"type": "string"
},
"parentId": {
"description": "Unique identifier (ID) of the new parent item",
"type": "string"
},
"position": {
"additionalProperties": false,
"description": "New position coordinates for the item",
"properties": {
"x": {
"description": "X coordinate of the item",
"type": "number"
},
"y": {
"description": "Y coordinate of the item",
"type": "number"
}
},
"type": "object"
}
},
"required": [
"boardId",
"itemId"
],
"type": "object"
}