zuuna_create_card
Create a card on a board with a required title, targeting a column by ID/title or the first column. Use an idempotency key to retry safely without duplicate cards.
Instructions
Create a card on a board. Title is required; give the target column by id or by title (omitted = the board's first column). Returns the new card's id and key. Retries are safe: pass the same idempotencyKey again after a lost response or 5xx and the API returns the original card instead of a duplicate.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| title | Yes | Card title (required). | |
| boardId | No | Board id (from zuuna_boards). Provide this or boardKey. | |
| boardKey | No | Board key/title instead of boardId; resolved via the board list. | |
| columnId | No | Target column id. Provide this or columnTitle. | |
| columnTitle | No | Target column title (resolved against the board's columns). | |
| description | No | Card description (plain text or sanitized HTML). null clears. | |
| idempotencyKey | No | Client-chosen key for safe retries (e.g. "order-4711-card"). If this key was already used in this workspace, the API returns the ORIGINAL card (200) instead of creating a duplicate. Use a fresh key for each new card; reuse one key only for retries of the same logical card. |