The workflow JSON
Copy or download the full n8n JSON below. Paste it into a new n8n workflow, add your credentials, activate. Full import guide →
{
"name": "01 - Inbound WhatsApp",
"nodes": [
{
"parameters": {
"httpMethod": "POST",
"path": "whatsapp-webhook",
"responseMode": "onReceived",
"responseData": "allEntries"
},
"id": "webhook-trigger",
"name": "WhatsApp Webhook",
"type": "n8n-nodes-base.webhook",
"typeVersion": 1,
"position": [
250,
300
]
},
{
"parameters": {},
"id": "parse-message",
"name": "Parse WhatsApp Message",
"type": "n8n-nodes-base.noOp",
"typeVersion": 1,
"position": [
450,
300
]
},
{
"parameters": {},
"id": "store-enquiry",
"name": "Store Enquiry in Database",
"type": "n8n-nodes-base.noOp",
"typeVersion": 1,
"position": [
650,
300
]
},
{
"parameters": {},
"id": "trigger-triage",
"name": "Trigger Triage Workflow",
"type": "n8n-nodes-base.noOp",
"typeVersion": 1,
"position": [
850,
300
]
}
],
"connections": {
"WhatsApp Webhook": {
"main": [
[
{
"node": "Parse WhatsApp Message",
"type": "main",
"index": 0
}
]
]
},
"Parse WhatsApp Message": {
"main": [
[
{
"node": "Store Enquiry in Database",
"type": "main",
"index": 0
}
]
]
},
"Store Enquiry in Database": {
"main": [
[
{
"node": "Trigger Triage Workflow",
"type": "main",
"index": 0
}
]
]
}
},
"active": false,
"settings": {},
"tags": [
{
"name": "phase3"
}
]
}
For the full experience including quality scoring and batch install features for each workflow upgrade to Pro
About this workflow
01 - Inbound WhatsApp. Webhook trigger; 4 nodes.
Source: https://github.com/RJK134/EquiSmile/blob/1f5cb0b472b4da566c9a0b7cf1d88bb3fc75ecc1/n8n/01-inbound-whatsapp.json — original creator credit. Request a take-down →
Related workflows
Workflows that share integrations, category, or trigger type with this one. All free to copy and import.
Convert An Xml File To Json Via Webhook Call. Uses stickyNote, extractFromFile, respondToWebhook, xml. Webhook trigger; 12 nodes.
This template is for everyone who needs to work with XML data a lot and wants to convert it to JSON instead.
Add A Bug To Linear Via Slack Command. Uses httpRequest, stickyNote. Webhook trigger; 10 nodes.
When building a product it's important to discover and eliminate bugs as quickly as possible. Since we're using our product at n8n a lot, we wanted to make it as easy as possible for everyone to add b
Generate google meet links in slack. Uses stickyNote, googleCalendar, slack. Webhook trigger; 9 nodes.