update-document-item
Modify a document item on a Miro board by updating its URL, title, position, or dimensions. Provide the board and item IDs to ensure precise changes.
Instructions
Update an existing document item on a Miro board
Input Schema
Name | Required | Description | Default |
---|---|---|---|
boardId | Yes | Unique identifier (ID) of the board that contains the document | |
data | No | The updated content and configuration of the document | |
geometry | No | Updated dimensions of the document | |
itemId | Yes | Unique identifier (ID) of the document that you want to update | |
position | No | Updated position of the document on the board |
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 document",
"type": "string"
},
"data": {
"additionalProperties": false,
"description": "The updated content and configuration of the document",
"properties": {
"title": {
"description": "Updated title of the document",
"type": "string"
},
"url": {
"description": "Updated URL of the document",
"type": "string"
}
},
"type": "object"
},
"geometry": {
"additionalProperties": false,
"description": "Updated dimensions of the document",
"properties": {
"height": {
"description": "Updated height of the document",
"type": "number"
},
"width": {
"description": "Updated width of the document",
"type": "number"
}
},
"type": "object"
},
"itemId": {
"description": "Unique identifier (ID) of the document that you want to update",
"type": "string"
},
"position": {
"additionalProperties": false,
"description": "Updated position of the document on the board",
"properties": {
"x": {
"description": "Updated X coordinate of the document",
"type": "number"
},
"y": {
"description": "Updated Y coordinate of the document",
"type": "number"
}
},
"type": "object"
}
},
"required": [
"boardId",
"itemId"
],
"type": "object"
}