Get Card Details
fizzy_get_cardRetrieve a card's full details: description, assignees, tags, due dates, steps, and metadata. Set include_attachments=true to get attachment filenames and signed IDs for fetching files.
Instructions
Get detailed information about a specific card including full description (HTML), assignees, tags, due dates, steps (to-dos), and metadata. Use this to see complete card content before making updates. Attachments — screenshots, images, PDFs, logs — appear in the description only as raw markup, and the plain-text description flattens them to a bare filename with no way to fetch them. Pass include_attachments=true to also get an 'attachments' array with each file's filename, content_type, byte_size, dimensions and signed_id; pass that signed_id and filename to fizzy_get_attachment to actually see an image. Do that whenever a card mentions a screenshot or the answer depends on what a picture shows.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| 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. | |
| 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. | |
| include_attachments | No | Set true to add an 'attachments' array parsed out of the rich-text HTML: each file's filename, content_type, byte_size, width, height, signed_id, url and preview_url. Attachments are otherwise visible only as raw <action-text-attachment> markup inside the HTML, and not at all in the plain-text rendering. Pass the returned signed_id and filename to fizzy_get_attachment to actually see an image. Omitting this parameter (the default) leaves the response exactly as it was before this option existed. |