Get a board
kanbanzone_get_boardRetrieve a Kanban Zone board by its public ID. Optionally include columns, labels, members, or custom fields in markdown or JSON format.
Instructions
Fetch a single board by its publicId.
Args:
board (string, required): the board publicId, e.g. "OeMrbG8g".
include_columns (boolean): include columns.
include_labels (boolean): include labels.
include_members (boolean): include members.
include_custom_fields (boolean): include custom fields.
response_format ("markdown" | "json"): output format. Defaults to markdown.
Examples:
"Show me the OeMrbG8g board with its columns"
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| board | Yes | Board publicId, e.g. "OeMrbG8g". | |
| include_columns | No | ||
| include_labels | No | ||
| include_members | No | ||
| include_custom_fields | No | ||
| response_format | No | Output format. 'markdown' (default) is human-readable; 'json' is the raw structured payload. | markdown |