update-image-item-using-file
Replace an image on a Miro board with a new file, update its title, and adjust its position using the board and item IDs. Streamline image modifications directly from your device.
Instructions
Update an existing image item on a Miro board using file from device
Input Schema
Name | Required | Description | Default |
---|---|---|---|
boardId | Yes | Unique identifier (ID) of the board where you want to update the item | |
filePath | Yes | Path to the new image file on the device | |
itemId | Yes | Unique identifier (ID) of the image that you want to update | |
position | No | Updated position of the image on the board | |
title | No | Updated title of the image |
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"
},
"filePath": {
"description": "Path to the new image file on the device",
"type": "string"
},
"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"
},
"title": {
"description": "Updated title of the image",
"type": "string"
}
},
"required": [
"boardId",
"itemId",
"filePath"
],
"type": "object"
}