update-image-item
Modify existing image items on a Miro board, including updating titles, positions, and dimensions, using the board and item IDs.
Instructions
Update an existing image item on a Miro board
Input Schema
Name | Required | Description | Default |
---|---|---|---|
boardId | Yes | Unique identifier (ID) of the board where you want to update the item | |
data | No | The updated content of the image | |
geometry | No | Updated dimensions of the image | |
itemId | Yes | Unique identifier (ID) of the image that you want to update | |
position | No | Updated position of the image 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 where you want to update the item",
"type": "string"
},
"data": {
"additionalProperties": false,
"description": "The updated content of the image",
"properties": {
"title": {
"description": "Updated title of the image",
"type": "string"
}
},
"type": "object"
},
"geometry": {
"additionalProperties": false,
"description": "Updated dimensions of the image",
"properties": {
"height": {
"description": "Updated height of the image",
"type": "number"
},
"width": {
"description": "Updated width of the image",
"type": "number"
}
},
"type": "object"
},
"itemId": {
"description": "Unique identifier (ID) of the image that you want to update",
"type": "string"
},
"position": {
"additionalProperties": false,
"description": "Updated position of the image on the board",
"properties": {
"origin": {
"description": "Updated origin of the image (center, top-left, etc.)",
"type": "string"
},
"relativeTo": {
"description": "Updated reference point (canvas_center, etc.)",
"type": "string"
},
"x": {
"description": "Updated X coordinate of the image",
"type": "number"
},
"y": {
"description": "Updated Y coordinate of the image",
"type": "number"
}
},
"type": "object"
}
},
"required": [
"boardId",
"itemId"
],
"type": "object"
}