Prerequisites: Webhook to API Notification or Your First Workflow. Zendesk subdomain and API token for live ticket creation.
Build a support ticket routing workflow with AI classification: receive tickets via webhook, classify by category, create Zendesk tickets with the right priority, and start an SLA timer.
What this template does
Template #243 — Support Ticket AI Route (Support):
- Ticket Webhook — POST intake at path
support-intake. - Classify Ticket — AI labels: Billing, Technical, Account, Sales, Other.
- Route by Category — switch to billing vs technical Zendesk nodes (and default).
- Zendesk Create Ticket — subject/body/priority per category.
- Start SLA Timer — tracks deadline for escalation.
Step 1 — Load the template
- Studio → Templates → search
Support Ticket AIor category Support. - Load template #243.
Step 2 — Configure the webhook
- Select Ticket Webhook. Note the URL after activation.
- Expected JSON fields include
subject,description, andemail(adjust to match your helpdesk).
curl -X POST "https://your-instance/webhook/support-intake" \
-H "Content-Type: application/json" \
-d '{"subject":"Cannot access invoice","description":"Billing portal shows error 500","email":"[email protected]"}'
Step 3 — AI classification
- Open Classify Ticket. Input field should match your description field (
description). - Edit Labels if your support queues use different categories.
- Run Dry Run and confirm the
labeloutput matches expectations.
Step 4 — Zendesk branches
- For each Zendesk — * node, set Subdomain, Email, and API token.
- Tune Priority per branch (e.g. high for Billing, urgent for Technical).
- If you use another ticketing system, replace Zendesk nodes with HTTP Request to your API.
Step 5 — SLA timer
- Configure Start SLA Timer with
{{ticketId}}or entity ID from Zendesk response. - Pair with a scheduled workflow to check breaches — see template #194 Cron → Check SLA → Escalate in the library.
Step 6 — Activate
- Validate connections on all switch branches.
- Activate and POST test tickets for each category.
- Verify Zendesk tickets and SLA records in Jobs → History.
What you learned
- Webhook intake + AI routing for support queues.
- Switch-based multi-destination ticketing.
- SLA tracking on incoming tickets.
Related tutorials
- Webhook to API Notification — HTTP integration basics.
- Purchase Approval Workflow — another business webhook pattern.
- AI Workflow Assistant — find more support templates by description.