Macha

Reading Image Attachments on Zendesk Tickets with AI Vision

Abbas, Customer Support & AI, Macha

Written by

Ankeet Guha, Co-founder & CTO, Macha

Reviewed by

Published July 22, 2026

Updated July 22, 2026

A surprising share of support tickets aren't really text. A customer drags in a screenshot of an error dialog and writes "see attached." Someone photographs a damaged product and types "this is what arrived." A finance contact forwards a receipt and asks you to "match it to my order." For a text-only AI agent, all of that is a dead end — it sees a filename, not a picture, and either guesses or punts to a human.

Reading Image Attachments on Zendesk Tickets with AI Vision

Macha closes that gap. When one of your agents encounters an image attachment on a Zendesk ticket, it downloads the image, encodes it, and sends it to a vision-capable model for actual visual analysis. The agent can describe what's in a screenshot, read the text inside an image, identify a product, or parse a receipt — and then do the next thing it would do with any ticket: search your knowledge base, fill a field, reply, or change the status. This post is a deep dive on that capability: how it works, which models support it, what it costs, and the honest cases where you shouldn't lean on it.

Macha isn't a Zendesk replacement — it's an AI agent layer that sits on top of the Zendesk you already run. Image vision is one of the tools those agents can use, alongside reading tickets and custom fields, posting replies, and updating ticket state.

What "AI vision" actually means here

There are two very different things people mean when they say an AI "reads an attachment," and it's worth being precise, because Macha's Read Attachment tool does both:

  • Document text extraction — for PDFs, DOCX, XLSX, and CSV files, the tool pulls out the text content so the model can read it. This is closer to classic parsing.
  • Image vision — for actual images (JPEG, PNG, GIF, WebP), the tool downloads the file, base64-encodes it, and passes it to the model as visual content. The model isn't just OCR-ing words; it's looking at the picture.

That second path is what shipped on April 17, 2026, and it's the focus here. The distinction matters because vision lets the agent reason about things OCR can't: what's broken in this photo, which product is this, does this screenshot show a payment-failed state or a network error. According to Macha's own connector capabilities, an agent with vision can:

  • Describe a screenshot — "the customer's screenshot shows a 402 Payment Required error on the checkout page."
  • Read text inside an image — pull the order number off a photographed invoice, or the error string from a screenshot.
  • Identify a product — match a photo to a SKU or product line.
  • Parse a receipt — extract date, total, and line items from a snapshot of a receipt.
A Zendesk ticket as it lands in the agent's queue — the kind of conversation where a customer's screenshot or photo decides the whole resolution.
A Zendesk ticket as it lands in the agent's queue — the kind of conversation where a customer's screenshot or photo decides the whole resolution.

How an agent reads an image, step by step

You don't configure vision as a separate feature — it rides on the Read Attachment tool. The flow looks like this:

  1. A trigger fires. An autonomous agent picks up a ticket — say, on New Ticket or Customer Reply. (Macha's Zendesk connector ships triggers for new tickets, customer replies, status and priority changes, assignment, and closes.)
  2. The agent notices an attachment. Reading the ticket surfaces the attached files.
  3. The agent calls Read Attachment. For an image, the tool downloads the file from Zendesk, base64-encodes it, and sends it to the model as visual content.
  4. The model "sees" the image and returns its analysis — a description, the extracted text, a product match — as part of the agent's reasoning.
  5. The agent acts. It uses what it saw the same way it'd use anything else: searching your Help Center, drafting a reply, setting a custom field, or routing the ticket.

To enable it, you add the Read Attachment tool to the agent from the tool picker — the same place you grant any other capability.

Macha's tool picker — agents are granted Zendesk capabilities (read tickets, reply, update status, search the help center) here, tool by tool.
Macha's tool picker — agents are granted Zendesk capabilities (read tickets, reply, update status, search the help center) here, tool by tool.

In the dashboard, the result is visible too: autonomous conversation tool cards render an image thumbnail preview of what the agent looked at (with a graceful broken-image fallback), so when you audit a conversation you can see the picture the model reasoned over — not just a line of text claiming it did.

Which models support vision

Vision is a model capability, not a universal one, so the model you pick for the agent matters. As of the April 17 release, the vision-capable models are:

ModelVisionNotes
GPT-5.4 MiniYesMacha's newer default mini — 400K context window (3× GPT-5 Mini), stronger reasoning
GPT-5 MiniYes
GPT-4o MiniYes
Claude Sonnet 4.5Yes
Claude Sonnet 4Yes
Groq modelsNoThe agent gracefully returns a "not supported" message rather than failing

The practical takeaway: if image reading matters to a given agent, point it at one of the vision-capable models. If you've put a Groq model on an agent for speed and it hits an image, it won't crash — it'll tell you vision isn't supported on that model, and you can swap.

The model selector on a Macha agent — set the model here to a vision-capable one for any agent that needs to read image attachments.
The model selector on a Macha agent — set the model here to a vision-capable one for any agent that needs to read image attachments.

GPT-5.4 Mini shipped the same day as vision and is a sensible default for this work: it carries the same image-vision support as the others but with a far larger context window, which helps when an image lands alongside a long ticket thread and a stack of custom fields.

A worked example: the "it arrived broken" ticket

Picture a returns agent built on Macha, sitting on top of your Zendesk. A ticket comes in:

"My order arrived damaged — photo attached. Order #013724827106."

Here's what a vision-enabled agent can do that a text-only one can't. It reads the ticket and the custom fields (Macha's Get Custom Fields tool resolves field labels, so it sees Order number: 013724827106 instead of a raw field ID). It calls Read Attachment on the photo, and the model sees a cracked casing rather than taking the customer's word for it. With both the visual confirmation and the order number in hand, it can search your returns policy in the Help Center, draft a reply that references the specific damage, and tag the ticket for the returns queue — or, if you've gated actions, leave a draft for a human to approve.

The same shape applies to receipts ("parse the total and date, match it to the order"), error screenshots ("identify the error state, link the right troubleshooting article"), and product photos ("which model is this?"). The win isn't OCR for its own sake — it's that the agent already has the rest of the ticket context and the tools to act on what it sees.

How this compares to OCR apps and DIY vision workflows

If you search the Zendesk Marketplace, you'll find a healthy set of OCR appsKnots' OCR Scanner (PDF, JPG, JPEG, PNG, HEIC, 150+ languages), "Extract Text From Image," and classification apps that OCR attachments. You'll also find DIY recipes — n8n and GrowwStacks-style workflows that wire GPT-4o Vision to Zendesk and Jira by hand.

Those tools are good at what they do, and for a pure "turn this scanned form into searchable text" job, a dedicated OCR app may be all you need. The difference is one of scope:

  • OCR apps mostly extract text and drop it into the ticket. Reasoning and action are still on a human (or a separate automation).
  • DIY vision workflows can reason, but you own the glue — the webhook, the image hand-off, the error handling, the prompt — and the result still has to be routed back into your support flow.
  • A Macha agent treats vision as one tool inside an agent that already reads the ticket and custom fields, searches your knowledge, and takes Zendesk actions. The image is just another input to a decision the agent was already going to make.

In other words, OCR answers "what does this image say?" A Macha agent answers "what should we do about this ticket, given what the image shows?"

Watch-outs: when not to lean on vision

Image vision is genuinely useful, but it isn't magic, and a few honest caveats keep you out of trouble:

  • Formats are specific. Image vision covers JPEG, PNG, GIF, and WebP. A PDF or DOCX goes through the text-extraction path instead, not vision — so a photographed receipt saved as a PDF behaves differently than the same receipt as a PNG.
  • Model choice is load-bearing. Put image-reading agents on a vision-capable model. A Groq-powered agent will politely report "not supported" rather than read the picture.
  • It costs credits. Vision runs against the model like any other AI action, and image input adds tokens, so a busy ticket with a large screenshot isn't free. Credits are billed per AI action and vary by model — the bigger/heavier the model, the more per call. Estimate before you point a high-volume trigger at it. (See pricing for how credits map to plans.)
  • Vision is not verification. A model describing a receipt is not a fraud check, and "the photo looks damaged" is not a warranty adjudication. For anything with money or policy on the line, gate the agent's action behind a human, or have it draft rather than send.
  • Hard or low-quality images degrade gracefully, not perfectly. Blurry photos, tiny text, or handwriting will sometimes be misread. Treat extracted values (order numbers, totals) as a strong hint to confirm, not gospel — especially when the agent will key off them automatically.

A reasonable rollout: start vision on a triage or drafting agent where a human still approves, watch the conversation tool cards and the thumbnails to see what the model actually saw, and only then promote it to autonomous replies for the narrow cases where it's clearly reliable.

Where this is heading

Vision shipped first on the Zendesk connector, but it's built on a shared image utility — a reusable download-and-encode helper. Per the release notes, future connectors like Freshdesk and Slack can add image reading "with a single function call." So the same capability that reads a screenshot on a Zendesk ticket today is designed to extend to the rest of Macha's helpdesk and comms connectors over time, without re-solving the plumbing each time.

FAQ

What image formats can a Macha agent read? JPEG, PNG, GIF, and WebP are handled through AI vision. PDF, DOCX, XLSX, and CSV are read through text extraction — the same Read Attachment tool, a different path.

Which models support image vision? GPT-5.4 Mini, GPT-5 Mini, GPT-4o Mini, Claude Sonnet 4.5, and Claude Sonnet 4. Groq models don't support vision and will return a "not supported" message instead of failing.

Is this OCR? It's more than OCR. The agent can read text inside an image (OCR-style), but because it sends the image to a vision model, it can also describe a scene, identify a product, or interpret a screenshot's state — not just transcribe characters.

Does it cost extra? Vision uses credits like any AI action; image input adds tokens, and the per-action cost depends on the model you choose. There's no separate "vision add-on" — it's part of the agent running. See the pricing page for current plans.

Do I need to turn vision on separately? No. Add the Read Attachment tool to the agent and pick a vision-capable model. When the agent meets an image attachment, it uses vision automatically.

Can I see what the agent looked at? Yes. Autonomous conversation tool cards show a thumbnail preview of the image the agent analyzed, so you can audit exactly what it saw.

Try it

If a meaningful slice of your queue is screenshots, photos, and receipts, give one agent vision and watch it stop punting on "see attached." Start a 7-day free trial, no credit card required, connect Zendesk, add the Read Attachment tool to an agent on a vision-capable model, and send yourself a test ticket with a screenshot. The Zendesk integration page and the docs cover the rest of the connector's tools and triggers.


Written by Abbas (Customer Support & AI, Macha) · Reviewed by Ankeet Guha (Co-founder & CTO) · Published 2026-06-24 · Last updated 2026-06-24.

Macha

About Macha

Macha is an AI agent platform that works on top of the help desk you already use — Zendesk, Freshdesk, Gorgias, or Front — and connects to the rest of your stack, even your own internal systems. Its AI agents resolve tickets and automate entire workflows end to end, all set up in plain English, no code. Learn more about Macha →

Zendesk
5.0 on Zendesk Marketplace

Loved by support teams worldwide

See what support teams are saying about Macha AI.

The application seems excellent to me! We are still testing, and we need support for some details and they were extremely efficient too!

Daniela Costa

Daniela Costa

Head of Support, Seabra

Macha has been a great addition to our support toolkit. It generates clear, well-organized responses that fit naturally into our workflow. One feature we particularly appreciate is its ability to automatically reply in the same language as the ticket.

Marius F

Marius F

Support Head, Zentana

We've been using Macha for a little while now and it's been really great addition so far! It's powerful, convenient, and makes getting work done a lot easier for our agents.

Alexander Wedén

Alexander Wedén

Head of Support

Support team is very helpful and responsive. Really enjoy how lightweight this is within Zendesk itself vs other more intrusive tools.

Cathleen Wright

Cathleen Wright

Zendesk Admin, Cortex IO

So far it's pretty good! Our queries are a little nuanced, so we can't always use it, but it's got enough utility for us. It can even incorporate our bilingual country with greetings in a second language.

Jae Oliver

Jae Oliver

Head of Support, Wise

Really enjoying using Macha, it has made a noticeable difference to our support team in a short amount of time. I really like the ticket summary feature, saves us a lot of time.

Harry Jackson

Harry Jackson

Head of Support, Crumb

Macha AI is a great addition to my workspace! It's powerful, convenient, and it really makes productivity so much easier for our agents!

Dave G

Dave G

Head of Support, Cyber Power Systems

Very impressed! AI integration for Zendesk has certainly come a long way and Macha seems to set the standard for now. This will for sure save lot of time in our support team.

Pauli Juel

Pauli Juel

Head of CS, Dokument24

Macha has been working great for us so far! The auto-responses are accurate and our resolution time has dropped significantly.

Lana T

Lana T

Zendesk Admin, Swotzy

Macha AI is a great addition. The knowledge base feature means our agents always have the right answers at their fingertips.

Mischa Wolf

Mischa Wolf

Head of Support, Topi

We're enjoying this integration so far. It's made our support team more efficient and our customers get faster responses.

Paula G

Paula G

Head of Customer Support, Xly Studio

The team enjoys using it. It saves considerable time on common questions and the integration options are excellent.

Kilian Leister

Kilian Leister

Support Head, Didriksons

Ready to supercharge your team with AI?

Get started in minutes. Connect your tools, configure your agents, and let AI handle the rest.

500 free credits · no time limit, no credit card