tag_board
Apply a tag to a board.
Mutating tool: it changes data in Nurama. Available only when the key carries the matching scope.
Apply a tag to a board. The tag must already exist on the board's owning resource (typically the project).
Input
| Property | Type | Required | Description |
|---|---|---|---|
boardId | string | yes | UUID of the board. |
tagId | string | yes | UUID of the tag. |
JSON Schema
{
"type": "object",
"properties": {
"boardId": {
"type": "string",
"description": "UUID of the board."
},
"tagId": {
"type": "string",
"description": "UUID of the tag."
}
},
"required": [
"boardId",
"tagId"
],
"additionalProperties": false
}