update-card-item
Modify an existing card on a Miro board by updating its title, description, assignee, due date, position, size, rotation, or style using board and item IDs.
Instructions
Update an existing card item on a Miro board
Input Schema
Name | Required | Description | Default |
---|---|---|---|
boardId | Yes | Unique identifier (ID) of the board that contains the card | |
data | No | The updated content and configuration of the card | |
geometry | No | Updated dimensions of the card | |
itemId | Yes | Unique identifier (ID) of the card that you want to update | |
position | No | Updated position of the card on the board | |
style | No | Updated style configuration of the card |
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 card",
"type": "string"
},
"data": {
"additionalProperties": false,
"description": "The updated content and configuration of the card",
"properties": {
"assigneeId": {
"description": "Updated user ID of the assignee",
"type": "string"
},
"description": {
"description": "Updated description of the card",
"type": "string"
},
"dueDate": {
"description": "Updated due date for the card (ISO 8601 format)",
"type": "string"
},
"title": {
"description": "Updated title of the card",
"type": "string"
}
},
"type": "object"
},
"geometry": {
"additionalProperties": false,
"description": "Updated dimensions of the card",
"properties": {
"height": {
"description": "Updated height of the card",
"type": "number"
},
"rotation": {
"description": "Updated rotation angle of the card",
"type": "number"
},
"width": {
"description": "Updated width of the card",
"type": "number"
}
},
"type": "object"
},
"itemId": {
"description": "Unique identifier (ID) of the card that you want to update",
"type": "string"
},
"position": {
"additionalProperties": false,
"description": "Updated position of the card on the board",
"properties": {
"x": {
"description": "Updated X coordinate of the card",
"type": "number"
},
"y": {
"description": "Updated Y coordinate of the card",
"type": "number"
}
},
"required": [
"x",
"y"
],
"type": "object"
},
"style": {
"additionalProperties": false,
"description": "Updated style configuration of the card",
"properties": {
"cardTheme": {
"description": "Updated color of the card",
"type": "string"
}
},
"type": "object"
}
},
"required": [
"boardId",
"itemId"
],
"type": "object"
}