AI-Powered Zendesk Support Responses with RAG, OpenAI, and Supabase Knowledge Base - n8n Workflow | Neura Market
AI-Powered Zendesk Support Responses with RAG, OpenAI, and Supabase Knowledge Base
How it works
This workflow automates first responses to new Zendesk tickets with the help of AI and your internal knowledge base.
- Webhook trigger fires whenever a new ticket is created in Zendesk.
- Ticket details (subject, description, requester info) are extracted.
- Knowledge base retrieval - the workflow searches a Supabase vector store (with OpenAI embeddings) for the most relevant KB articles.
- AI assistant (RAG agent) drafts a professional reply using the retrieved KB and conversation memory stored in Postgres.
**Decision logic:**
- If no relevant KB info is found (or if it's a sensitive query like KYC, refunds, or account deletion), the workflow sends a fallback response and tags the ticket for human review.
- Otherwise, it posts the AI-generated reply and tags the ticket with ai_reply.
Logging & context memory ensure future ticket updates are aware of past interactions.
---
**Set up steps**
This workflow takes about 15-30 minutes to set up.
1. Connect credentials for Zendesk, OpenAI, Supabase, and Postgres.
2. Prepare your knowledge base: store support content in Supabase (documents table) and embed it using the provided Embeddings node.
3. Set up Postgres memory table (zendesk_ticket_histories) to store conversation history.
4. Update your Zendesk domain in the HTTP Request nodes (<YOUR_ZENDESK_DOMAIN>).
5. Deploy the webhook URL in Zendesk triggers so new tickets flow into n8n.
6. Test by creating a sample ticket and verifying:
- AI replies appear in Zendesk
- Correct tags (ai_reply or human_requested) are applied
- Logs are written to Postgres
Platform
n8n
Category
Customer Support
Price
Free
Creator
Md Sagor Khan
if
set
webhook
stickyNote
httpRequest
agent
toolVectorStore
embeddingsOpenAi
memoryPostgresChat
vectorStoreSupabase
How to import this workflow into n8n
1Purchase or download the workflow to get the n8n workflow JSON file.
2In your n8n instance, open Workflows and choose "Import from File" (or paste the JSON with Ctrl+V on the canvas).
3Open each node marked with a credential warning and connect your own accounts and API keys.
4Run the workflow once manually to verify the data flow, then toggle it to Active.