Create Card
fizzy_create_cardCreate a new card on a Fizzy project board with title, description, assignees, tags, and due date. Set status and column, or leave in triage for later prioritization.
Instructions
Create a new card on a board with optional title, description (HTML supported), status (draft/published), column placement, assignees, tags, and due date. Cards start in triage by default unless a column is specified.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| title | Yes | The card title (required). Keep concise and descriptive. This is the main identifier shown in card lists and boards. | |
| due_on | No | Due date in ISO 8601 format (e.g., '2024-12-31' or '2024-12-31T17:00:00Z'). Used for deadline tracking. Omit for cards without deadlines. | |
| status | No | Initial card status. 'draft' = not yet visible to team, 'published' = visible (default). Draft cards are useful for preparing work before sharing. | |
| tag_ids | No | Array of tag IDs to categorize the card. Tags help with organization and filtering. Omit to create card without tags. | |
| board_id | Yes | The unique board identifier: a 25-character identifier, e.g., '0000000000000000000000abc'. Get available board IDs from fizzy_get_boards. | |
| column_id | No | Workflow column to place the card in. Omit to place card in triage (default). Cards in triage haven't been prioritized into workflow yet. | |
| description | No | Detailed card description. Supports HTML formatting including: <b>bold</b>, <i>italic</i>, <a href='...'>links</a>, <code>code</code>, <ul><li>lists</li></ul>, <pre>code blocks</pre>. Omit for cards that don't need detailed descriptions. | |
| account_slug | Yes | The account slug identifier (e.g., '123456' or '/123456'). This identifies which Fizzy account to operate on. Get available account slugs from fizzy_get_identity or fizzy_get_accounts. | |
| assignee_ids | No | Array of user IDs to assign to this card. Assigned users receive notifications about card updates and are responsible for the work. Omit for unassigned cards. Users must be members of the card's board; ids that aren't are reported back in an 'assignment_warnings' field on the created card rather than failing the create. |