create_card
Create a card in a kanban board with placement including board, column, and position. Use an idempotency key to prevent duplicate cards on retry.
Instructions
Create a card. placements must have >=1 entry (board_id, column_id, position).
Send an idempotency_key (any unique string, REUSED on retry) so retries return the
original card instead of duplicating it.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| card | Yes | ||
| idempotency_key | No |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| id | No | ||
| ext | No | ||
| title | Yes | ||
| labels | No | ||
| archived | No | ||
| due_date | No | ||
| assignees | No | ||
| checklists | No | ||
| created_at | No | ||
| placements | No | ||
| start_date | No | ||
| updated_at | No | ||
| attachments | No | ||
| description | No |