update-sticky-note-item
Modify content, position, shape, dimensions, and style of an existing sticky note on a Miro board using specified board and item IDs.
Instructions
Update an existing sticky note item on a Miro board
Input Schema
Name | Required | Description | Default |
---|---|---|---|
boardId | Yes | Unique identifier (ID) of the board that contains the sticky note | |
data | No | Updated content and configuration of the sticky note | |
geometry | No | Updated dimensions of the sticky note | |
itemId | Yes | Unique identifier (ID) of the sticky note that you want to update | |
position | No | Updated position of the sticky note on the board | |
style | No | Updated style configuration of the sticky note |
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 sticky note",
"type": "string"
},
"data": {
"additionalProperties": false,
"description": "Updated content and configuration of the sticky note",
"properties": {
"content": {
"description": "Updated text content of the sticky note",
"type": "string"
},
"shape": {
"description": "Updated shape of the sticky note (square, rectangle, circle, triangle, rhombus)",
"type": "string"
}
},
"type": "object"
},
"geometry": {
"additionalProperties": false,
"description": "Updated dimensions of the sticky note",
"properties": {
"height": {
"description": "Updated height of the sticky note",
"type": "number"
},
"width": {
"description": "Updated width of the sticky note",
"type": "number"
}
},
"type": "object"
},
"itemId": {
"description": "Unique identifier (ID) of the sticky note that you want to update",
"type": "string"
},
"position": {
"additionalProperties": false,
"description": "Updated position of the sticky note on the board",
"properties": {
"origin": {
"description": "Origin of the sticky note (center, top-left, etc.)",
"type": "string"
},
"relativeTo": {
"description": "Reference point (canvas_center, etc.)",
"type": "string"
},
"x": {
"description": "Updated X coordinate of the sticky note",
"type": "number"
},
"y": {
"description": "Updated Y coordinate of the sticky note",
"type": "number"
}
},
"type": "object"
},
"style": {
"additionalProperties": false,
"description": "Updated style configuration of the sticky note",
"properties": {
"fillColor": {
"description": "Updated fill color of the sticky note (use predefined values)",
"type": "string"
},
"textAlign": {
"description": "Updated alignment of the text (left, center, right)",
"type": "string"
},
"textColor": {
"description": "Updated color of the text on the sticky note",
"type": "string"
}
},
"type": "object"
}
},
"required": [
"boardId",
"itemId"
],
"type": "object"
}