Create a card
kanbanzone_create_cardAdd a card to a board with title; optionally set description, column, owner, label, or insert at top.
Instructions
Create a single card on a board. Internally calls the batch POST /cards endpoint with a one-card array.
Args:
board (string, required): board publicId.
title (string, required): card title.
description (string, optional): rich-text or plain description.
column (string, optional): column ObjectId. If omitted, the card lands in the default backlog.
owner (string, optional): account email of the assignee.
label (string, optional): label name (e.g. "Enhancement"). Must match a label configured on the board.
addToTop (boolean, optional): insert at the top of the column instead of the bottom.
Examples:
"Create a card titled 'Refactor auth' on board OeMrbG8g"
"Add a card to the To-Do column with description ..."
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| board | Yes | ||
| title | Yes | ||
| description | No | ||
| column | No | ||
| owner | No | ||
| label | No | ||
| addToTop | No |