create-app-card-item
Generate and position app cards on a Miro board with customizable titles, descriptions, statuses, and fields. Define card dimensions and location for streamlined visual organization.
Instructions
Create a new app card item on a Miro board
Input Schema
Name | Required | Description | Default |
---|---|---|---|
boardId | Yes | Unique identifier (ID) of the board where the app card will be created | |
data | Yes | The content and configuration of the app card | |
geometry | No | Dimensions of the app card | |
position | Yes | 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 where the app card will be created",
"type": "string"
},
"data": {
"additionalProperties": false,
"description": "The content and configuration of the app card",
"properties": {
"description": {
"description": "Description of the app card",
"type": "string"
},
"fields": {
"description": "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": "Status text of the app card",
"type": "string"
},
"title": {
"description": "Title of the app card",
"type": "string"
}
},
"required": [
"title"
],
"type": "object"
},
"geometry": {
"additionalProperties": false,
"description": "Dimensions of the app card",
"properties": {
"height": {
"description": "Height of the app card",
"type": "number"
},
"width": {
"description": "Width of the app card",
"type": "number"
}
},
"type": "object"
},
"position": {
"additionalProperties": false,
"description": "Position of the app card on the board",
"properties": {
"x": {
"description": "X coordinate of the app card",
"type": "number"
},
"y": {
"description": "Y coordinate of the app card",
"type": "number"
}
},
"required": [
"x",
"y"
],
"type": "object"
}
},
"required": [
"boardId",
"data",
"position"
],
"type": "object"
}