update-board-classification
Update board classification in Miro by applying a specific label to an existing board. Requires orgId, teamId, boardId, and labelId for precise classification management.
Instructions
Updates board classification for an existing board (Enterprise only)
Input Schema
Name | Required | Description | Default |
---|---|---|---|
boardId | Yes | Unique identifier of the board that you want to update | |
labelId | Yes | Unique identifier of the classification label to apply | |
orgId | Yes | id of the organization | |
teamId | Yes | id of the team |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"boardId": {
"description": "Unique identifier of the board that you want to update",
"type": "string"
},
"labelId": {
"description": "Unique identifier of the classification label to apply",
"type": "string"
},
"orgId": {
"description": "id of the organization",
"type": "string"
},
"teamId": {
"description": "id of the team",
"type": "string"
}
},
"required": [
"orgId",
"teamId",
"boardId",
"labelId"
],
"type": "object"
}