untag_board
Remove a tag from a board.
Mutating tool: it changes data in Nurama. Available only when the key carries the matching scope.
Remove a tag from a board. No-op if the tag is not currently applied.
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
}