update-app-card-item
Modify app card items on a Miro board by updating title, description, status, fields, position, or dimensions. Requires board ID and item ID for targeted changes.
Instructions
Update an existing app card item on a Miro board
Input Schema
Name | Required | Description | Default |
---|---|---|---|
boardId | Yes | Unique identifier (ID) of the board that contains the app card | |
data | No | The updated content and configuration of the app card | |
geometry | No | Updated dimensions of the app card | |
itemId | Yes | Unique identifier (ID) of the app card that you want to update | |
position | No | Updated position of the app card 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 that contains the app card",
"type": "string"
},
"data": {
"additionalProperties": false,
"description": "The updated content and configuration of the app card",
"properties": {
"description": {
"description": "Updated description of the app card",
"type": "string"
},
"fields": {
"description": "Updated custom fields to display on the app card",
"items": {
"additionalProperties": false,
"properties": {
"fillColor": {
"description": "Fill color of the field",
"type": "string"
},
"iconShape": {
"description": "Shape of the icon",
"type": "string"
},
"textColor": {
"description": "Color of the text",
"type": "string"
},
"value": {
"description": "Value of the field",
"type": "string"
}
},
"required": [
"value"
],
"type": "object"
},
"type": "array"
},
"status": {
"description": "Updated status text of the app card",
"type": "string"
},
"title": {
"description": "Updated title of the app card",
"type": "string"
}
},
"type": "object"
},
"geometry": {
"additionalProperties": false,
"description": "Updated dimensions of the app card",
"properties": {
"height": {
"description": "Updated height of the app card",
"type": "number"
},
"width": {
"description": "Updated width of the app card",
"type": "number"
}
},
"type": "object"
},
"itemId": {
"description": "Unique identifier (ID) of the app card that you want to update",
"type": "string"
},
"position": {
"additionalProperties": false,
"description": "Updated position of the app card on the board",
"properties": {
"x": {
"description": "Updated X coordinate of the app card",
"type": "number"
},
"y": {
"description": "Updated Y coordinate of the app card",
"type": "number"
}
},
"required": [
"x",
"y"
],
"type": "object"
}
},
"required": [
"boardId",
"itemId"
],
"type": "object"
}