update-tag
Modify the title or fill color of a specific tag on a Miro board by providing the board ID, tag ID, and updated attributes.
Instructions
Update an existing tag on a Miro board
Input Schema
Name | Required | Description | Default |
---|---|---|---|
boardId | Yes | Unique identifier (ID) of the board that contains the tag | |
fillColor | No | Updated fill color of the tag (hex format, e.g. #000000) | |
tagId | Yes | Unique identifier (ID) of the tag that you want to update | |
title | No | Updated title of the tag |
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 tag",
"type": "string"
},
"fillColor": {
"description": "Updated fill color of the tag (hex format, e.g. #000000)",
"type": "string"
},
"tagId": {
"description": "Unique identifier (ID) of the tag that you want to update",
"type": "string"
},
"title": {
"description": "Updated title of the tag",
"type": "string"
}
},
"required": [
"boardId",
"tagId"
],
"type": "object"
}