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": "{{COMPANY_NAME}} SMS Tool - ElevenLabs Webhook",
"nodes": [
{
"id": "webhook-trigger",
"name": "ElevenLabs Tool Webhook",
"type": "n8n-nodes-base.webhook",
"typeVersion": 2,
"position": [
250,
300
],
"parameters": {
"httpMethod": "POST",
"path": "{{WEBHOOK_PATH}}",
"responseMode": "responseNode"
}
},
{
"id": "set-data",
"name": "Extract Tool Parameters",
"type": "n8n-nodes-base.set",
"typeVersion": 3.4,
"position": [
470,
300
],
"parameters": {
"mode": "manual",
"duplicateItem": false,
"assignments": {
"assignments": [
{
"id": "phone",
"name": "phone_number",
"value": "={{ $json.body.phone_number || $json.phone_number }}",
"type": "string"
},
{
"id": "name",
"name": "first_name",
"value": "={{ $json.body.caller_name || $json.body.first_name || $json.caller_name || $json.first_name || 'there' }}",
"type": "string"
}
]
}
}
},
{
"id": "twilio-sms",
"name": "Send SMS via Twilio",
"type": "n8n-nodes-base.twilio",
"typeVersion": 1,
"position": [
690,
300
],
"parameters": {
"resource": "sms",
"operation": "send",
"from": "+15550100",
"to": "={{ $json.phone_number }}",
"message": "=Hi {{ $json.first_name }}! {{SMS_MESSAGE}}"
},
"credentials": {
"twilioApi": {
"name": "<your credential>"
}
}
},
{
"id": "respond-webhook",
"name": "Respond to Webhook",
"type": "n8n-nodes-base.respondToWebhook",
"typeVersion": 1.1,
"position": [
910,
300
],
"parameters": {
"respondWith": "json",
"responseBody": "={{ { success: true, message: 'SMS sent successfully', sid: $json.sid } }}",
"options": {
"responseCode": 200
}
}
}
],
"connections": {
"ElevenLabs Tool Webhook": {
"main": [
[
{
"node": "Extract Tool Parameters",
"type": "main",
"index": 0
}
]
]
},
"Extract Tool Parameters": {
"main": [
[
{
"node": "Send SMS via Twilio",
"type": "main",
"index": 0
}
]
]
},
"Send SMS via Twilio": {
"main": [
[
{
"node": "Respond to Webhook",
"type": "main",
"index": 0
}
]
]
}
},
"settings": {
"executionOrder": "v1"
},
"_template": {
"version": "1.0",
"variables": {
"COMPANY_NAME": "Company name for workflow title",
"WEBHOOK_PATH": "URL path like 'acme-sms'",
"WEBHOOK_ID": "Unique ID like 'acme-sms-tool'",
"SMS_MESSAGE": "Custom SMS text with booking link"
}
}
}
Credentials you'll need
Each integration node will prompt for credentials when you import. We strip credential IDs before publishing — you'll add your own.
twilioApi
For the full experience including quality scoring and batch install features for each workflow upgrade to Pro
About this workflow
{{COMPANY_NAME}} SMS Tool - ElevenLabs Webhook. Uses twilio. Webhook trigger; 4 nodes.
Source: https://github.com/wranngle/voice_ai_agent_evals/blob/144c8477fd12d15adb7eb655ddda71f9f5d0b869/templates/sms-booking-tool-template.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.
Onsite Photos to Jobs (SMS Agent). Uses dataTable, twilio, httpRequest, airtable. Webhook trigger; 62 nodes.
Ever wished you could get a deep, multi-source research report on any topic, delivered directly to your WhatsApp chat in seconds? This workflow transforms your WhatsApp into a powerful, on-demand rese
This n8n workflow orchestrates a powerful suite of AI Agents and automations to manage and optimize various aspects of an e-commerce operation, particularly for platforms like Shopify. It leverages La
This workflow automates personalized customer journeys by analyzing CRM data, purchase history, chat interactions, and performance metrics to intelligently route customer actions through multiple chan
Whatsapp Lead Agent. Uses httpRequest, hunter, @tavily/n8n-nodes-tavily, @mendable/n8n-nodes-firecrawl. Webhook trigger; 35 nodes.