create-tag
Add custom tags to a Miro board by specifying a title and optional fill color. Input includes the board ID and content configuration for streamlined organization.
Instructions
Create a new tag on a Miro board
Input Schema
Name | Required | Description | Default |
---|---|---|---|
boardId | Yes | Unique identifier (ID) of the board where the tag will be created | |
data | Yes | The content and configuration of the tag | |
fillColor | No | Fill color of the tag (hex format, e.g. #000000) |
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 tag will be created",
"type": "string"
},
"data": {
"additionalProperties": false,
"description": "The content and configuration of the tag",
"properties": {
"title": {
"description": "Title of the tag",
"type": "string"
}
},
"required": [
"title"
],
"type": "object"
},
"fillColor": {
"description": "Fill color of the tag (hex format, e.g. #000000)",
"type": "string"
}
},
"required": [
"boardId",
"data"
],
"type": "object"
}