Make.com Customer Support Automation: Handle Tickets Automatically
Customer support automation in Make.com handles the high-volume, repetitive parts of support — classification, routing, AI-drafted responses, and multi-channel handling — so your support team can focus on complex, high-value interactions. This guide covers building a complete automated support system with Make.com and Claude.
Support Automation Architecture
A complete support automation in Make.com:
Inbound channels: Email, live chat (Intercom), WhatsApp (Twilio), web form (webhook)
Processing: Claude AI classifies, analyses, and drafts responses
Output channels: Ticketing (Zendesk/Freshdesk), CRM (HubSpot), team notifications (Slack), direct response
Knowledge base: Airtable or Notion → Claude uses this to ground responses
Email Support Automation
Scenario: Gmail → AI classify → route
- Gmail trigger: New email to support@
- OpenAI or Claude HTTP: Classify
- Parse JSON
- Router: Branch by
can_auto_resolve
- True → AI response path - False → Human routing path
AI response path:
- Airtable: Search knowledge base for relevant articles
- Claude HTTP: Draft specific response using knowledge base
- Gmail: Create draft (human reviews) OR Send directly for clearly answerable questions
- Zendesk: Log ticket as resolved
Human routing path:
- Router (second): Branch by urgency + category
- critical → Slack #urgent-support + Zendesk P1 ticket - billing + frustrated → Billing team email + P2 ticket - technical → Engineering Slack + Zendesk technical queue
- Zendesk: Create ticket with AI summary + category + urgency
- Slack: Notify team
Live Chat Integration
Intercom + Make.com + Claude:
- Intercom trigger (webhook): New conversation started
- Claude HTTP: Generate first response
- System: "You are a friendly support agent. Keep responses under 150 words (chat context). Use knowledge base: {{knowledge_base}}" - User: "{{customer_message}}"
- Intercom: Post bot reply to conversation
- Track: If customer replies again → fire another Make.com webhook → Continue conversation
Handoff to human agent: In Intercom, configure bot to trigger "handoff" when:
- Customer asks for a human
- Third round of conversation (Claude can't resolve)
- Customer sentiment = frustrated
Handoff webhook → Make.com → Slack: "Customer needs human support: {{conversation link}}"
Multi-Channel Support
WhatsApp support (Twilio + Make.com):
- Twilio webhook: inbound WhatsApp message
- Make.com Data Store: get conversation history for this phone number
- Claude HTTP: context-aware response with history
- Twilio: send WhatsApp reply
- Data Store: update conversation history
Unify across channels in Zendesk: All channels (email, chat, WhatsApp) create Zendesk tickets. The customer has one support history regardless of channel.
AI Knowledge Base Integration
Claude's responses are only as good as the context you give it. Ground responses in your documentation:
Airtable knowledge base setup: Create an Airtable base with:
- Article name
- Category (billing, technical, account, etc.)
- Content (full FAQ or doc text)
In your Make.com scenario:
- Before Claude call: Airtable → Search Records (category matches ticket category)
- Text Aggregator: combine matching records into one text block
- Include in Claude system prompt:
Knowledge base: {{aggregated_text}}
Fallback instruction in Claude prompt:
Support Analytics
Turn support data into product insights:
Weekly support digest:
- Schedule: Monday morning
- Zendesk: get all tickets from last week
- Text Aggregator: compile ticket subjects and descriptions
- Claude: "What are the top 5 recurring issues? What product changes would reduce ticket volume? What documentation gaps exist?"
- Notion: create weekly support insight report
- Slack: post to #product channel
CSAT tracking:
- Zendesk webhook: ticket closed
- Email: send CSAT survey (1-5 stars)
- Survey response → Make.com → Airtable: log score + ticket + category
- Monthly: Claude analyses trends → email report
Related articles
The Make.com playbook: 12 automations every SaaS should run
From lead routing to churn alerts — the scenarios that quietly pay for themselves.
Make.com error handling patterns that actually scale
Rollbacks, dead-letter routes, and alerting that wakes the right person.
Complete Make.com Guide: Everything You Need to Automate Your Business
The definitive Make.com guide — scenarios, modules, routers, and production patterns.