create_board
Create a new board with columns and labels; use an idempotency key to prevent duplicate boards on retry.
Instructions
Create a board. Omit id to have one generated; columns/labels may be inlined.
Send an idempotency_key (any unique string, REUSED on retry) so a retried call returns the original board instead of creating a duplicate.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| board | Yes | ||
| idempotency_key | No |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| id | No | ||
| ext | No | ||
| name | Yes | ||
| labels | No | ||
| columns | No | ||
| description | No |