List Card Comments
fizzy_get_card_commentsFetch all comments on a card in chronological order, showing authors, timestamps, and reaction counts. Optionally include attachment metadata for each comment.
Instructions
Get all comments on a card in chronological order. Returns comment text (HTML), authors, timestamps, and reaction counts. Use this to review discussion and feedback on a card. The result is the complete thread: every upstream page is fetched server-side, so there is no page parameter and nothing further to request. Use fields='summary' to drop the duplicated HTML body and the repeated per-comment card/creator detail — comment text itself is never truncated in either mode. Attachments posted in a comment appear only as raw markup inside the HTML body, which fields='summary' drops entirely. Pass include_attachments=true to add a per-comment 'attachments' array with each file's filename, content_type, byte_size, dimensions and signed_id — it works in both modes — then pass that signed_id and filename to fizzy_get_attachment to actually see an image.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| fields | No | Response projection. 'full' (the default — used when this parameter is omitted) returns every field exactly as the API provides it, unchanged from prior behavior. 'summary' strips large, rarely-needed fields — full HTML/rich-text bodies and descriptions, duplicated plain-text/HTML pairs, and repeated embedded objects like the full creator or card — keeping only IDs, names, and short previews. Summary responses are typically 4x to over 100x smaller depending on the tool. Prefer 'summary' when scanning, searching, or listing many results; switch to 'full' (or a single-item fetch tool) once you need complete detail on a specific item. | |
| card_id | No | The unique card identifier (numeric string, e.g., '67890'). Provide either card_id or card_number. Get available card IDs from fizzy_get_cards. | |
| card_number | No | The card number - the visible ID shown on the board (e.g., '#123'). Provide either card_id or card_number. | |
| 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. |