Nurama Developers

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

PropertyTypeRequiredDescription
boardIdstringyesUUID of the board.
tagIdstringyesUUID 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
}

On this page