Update Card
fizzy_update_cardUpdate a card's title, description, status, column, assignees, tags, or due date. Only fields you provide are changed, leaving others intact.
Instructions
Update an existing card's properties including title, description, status, column placement, assignees, tags, and due date. Partial updates are supported - only provided fields will be changed.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| title | No | New card title. Omit to keep current title unchanged. | |
| due_on | No | New due date in ISO 8601 format. Omit to keep current due date. Set to null to remove due date. | |
| status | No | New card status. Omit to keep current status. Note: Use fizzy_close_card/fizzy_reopen_card for archiving workflows. | |
| card_id | Yes | The card number - the visible ID shown on the board (e.g., '#123'). This is different from card_id and is used for some endpoints. Card numbers are shown in the Fizzy UI and are user-friendly identifiers. | |
| tag_ids | No | New array of tag IDs. Omit to keep current tags. ⚠️ This replaces all tags - it's not additive. Note: Use fizzy_toggle_card_tag for adding/removing individual tags. | |
| column_id | No | Move card to specified workflow column. Omit to keep in current location. ⚠️ This replaces column assignment completely. | |
| description | No | New card description (HTML supported). Omit to keep current description. ⚠️ This replaces the entire description - it's not a partial update. | |
| 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 | New array of assignee user IDs. Omit to keep current assignments. ⚠️ This replaces all assignees - it's not additive. Pass [] to unassign everyone. Cards with more than 5 assignees are rejected, because the API reports only the first 5 and the rest cannot be replaced safely - use fizzy_toggle_card_assignment there, and for adding/removing individual users generally. The resulting assignee list is read back and reported, so check the response: it names any user that did not end up in the state you asked for. |