Create a label on a board
kanbanzone_create_labelCreate a label on a board using a hex color and description. Optionally set it as the board's default label or specify a sort position.
Instructions
Create a label on a board. Each board can have at most one default label —
setting is_default: true automatically clears the flag on any existing default
label for the same board.
Args:
board (string, required): board publicId.
color (string, required): hex color, e.g. "#FF0000".
description (string, required): human-readable label text.
is_default (boolean, optional): mark this label as the board default.
position (number, optional): sort position. Defaults to end of the list.
Examples:
"Add an Urgent label to board OeMrbG8g with color #FF0000"
"Create a default Backlog label on board OeMrbG8g"
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| board | Yes | ||
| color | Yes | ||
| description | Yes | ||
| is_default | No | ||
| position | No |