create-image-item-using-file
Add an image to a Miro board by uploading a file or using base64 encoded data. Specify the board ID, image position, and optional title to customize placement.
Instructions
Create a new image item on a Miro board using file from device or from chat
Input Schema
Name | Required | Description | Default |
---|---|---|---|
boardId | Yes | Unique identifier (ID) of the board where the image will be created | |
imageData | Yes | Base64 encoded image data from the chat | |
position | Yes | Position of the image on the board | |
title | No | 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 the image will be created",
"type": "string"
},
"imageData": {
"description": "Base64 encoded image data from the chat",
"type": "string"
},
"position": {
"additionalProperties": false,
"description": "Position of the image on the board",
"properties": {
"origin": {
"description": "Origin of the image (center, top-left, etc.)",
"type": "string"
},
"relativeTo": {
"description": "Reference point (canvas_center, etc.)",
"type": "string"
},
"x": {
"description": "X coordinate of the image",
"type": "number"
},
"y": {
"description": "Y coordinate of the image",
"type": "number"
}
},
"required": [
"x",
"y"
],
"type": "object"
},
"title": {
"description": "Title of the image",
"type": "string"
}
},
"required": [
"boardId",
"imageData",
"position"
],
"type": "object"
}