Create a card
create_cardCreate a card in a Trello list, placing it at the bottom. Supports Markdown descriptions, due dates, and label IDs, returning the card's ID and URL.
Instructions
Create a card at the bottom of a list. list_id comes from get_lists. desc is Markdown. due is an ISO 8601 date or datetime (e.g. 2026-08-20 or 2026-08-20T17:00:00Z). label_ids are label ids from get_labels — names will not work. Returns the created card including its id and url.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| due | No | Due date, ISO 8601 (e.g. 2026-08-20T17:00:00Z). | |
| desc | No | Card description; Markdown is supported. | |
| name | Yes | Card title. | |
| list_id | Yes | List to create the card in (from get_lists). | |
| label_ids | No | Label ids to apply, from get_labels (ids, not names). |