Get Attachment
fizzy_get_attachmentRetrieve a file attached to a Fizzy card or comment to view the screenshot, mockup, or diagram it shows. Pass the signed_id and filename from card data; use preview_variation for a resized image.
Instructions
Fetch a file already attached to a card or comment and return it so it can actually be looked at. Images (PNG, JPEG, GIF, WebP) come back as an image the model can see; any other type comes back as metadata with a note that it cannot be rendered, and its bytes are not downloaded. Get the 'signed_id' and 'filename' to pass here from fizzy_get_card or fizzy_get_card_comments called with include_attachments=true — this tool takes no URL, and building the arguments from a URL by hand will not work. Prefer the preview: when the attachment reports a 'preview_variation', pass it as 'variation' to get the resized version, which is a fraction of the bytes and is what a full-resolution screenshot is refused in favour of. Use this whenever a card or comment references a screenshot, mockup, diagram, or error image and the answer depends on what it shows.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| filename | Yes | The attachment's filename, from the same 'filename' field, e.g. 'screenshot.png'. A single file name — anything containing a path separator is rejected. | |
| signed_id | Yes | The attachment's ActiveStorage signed id, exactly as reported in the 'signed_id' field of fizzy_get_card or fizzy_get_card_comments with include_attachments=true. Not a URL and not a file path. | |
| variation | No | The attachment's 'preview_variation' token, to fetch the resized preview instead of the full-resolution original. Strongly preferred for screenshots and photos: the preview is a fraction of the bytes at the resolution a model can actually read, and a large original is refused outright. Omit only when the attachment reported no preview_variation, or when full resolution is genuinely needed. | |
| 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. |