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": "Consulta Horarios por WhatsApp desde Excel",
"nodes": [
{
"id": "1",
"name": "Webhook Trigger",
"type": "n8n-nodes-base.webhook",
"typeVersion": 1,
"position": [
100,
300
],
"parameters": {
"httpMethod": "POST",
"path": "consulta-horarios",
"responseMode": "onReceived",
"responseData": {
"responseBody": "Recibido. Procesando consulta..."
}
},
"notes": "",
"credentials": {}
},
{
"id": "2",
"name": "Simular Mensaje Usuario",
"type": "n8n-nodes-base.set",
"typeVersion": 1,
"position": [
300,
300
],
"parameters": {
"values": {
"string": [
{
"name": "mensaje",
"value": "\u00bfQu\u00e9 horarios hay para ma\u00f1ana?"
}
]
}
},
"notes": "",
"credentials": {}
},
{
"id": "3",
"name": "Interpretar Fecha",
"type": "n8n-nodes-base.function",
"typeVersion": 1,
"position": [
500,
300
],
"parameters": {
"functionCode": "const input = $json[\"mensaje\"]; const now = new Date(); let targetDate = new Date(); if (input.includes(\"ma\u00f1ana\")) { targetDate.setDate(now.getDate() + 1); } const yyyy = targetDate.getFullYear(); const mm = String(targetDate.getMonth() + 1).padStart(2, '0'); const dd = String(targetDate.getDate()).padStart(2, '0'); const formattedDate = `${yyyy}-${mm}-${dd}`; return [{ json: { fecha_buscada: formattedDate } }];"
},
"notes": "",
"credentials": {}
},
{
"id": "4",
"name": "Descargar Excel",
"type": "n8n-nodes-base.httpRequest",
"typeVersion": 1,
"position": [
700,
300
],
"parameters": {
"url": "https://example.com/horarios.xlsx",
"responseFormat": "file",
"options": {}
},
"notes": "",
"credentials": {}
},
{
"id": "5",
"name": "Leer Excel",
"type": "n8n-nodes-base.spreadsheetFile",
"typeVersion": 1,
"position": [
900,
300
],
"parameters": {
"operation": "toJson",
"options": {
"rawData": false
}
},
"notes": "",
"credentials": {}
},
{
"id": "6",
"name": "Filtrar Horarios",
"type": "n8n-nodes-base.function",
"typeVersion": 1,
"position": [
1100,
300
],
"parameters": {
"functionCode": "const fechaBuscada = $items(\"Interpretar Fecha\")[0].json.fecha_buscada; return items.filter(item => item.json.fecha === fechaBuscada);"
},
"notes": "",
"credentials": {}
},
{
"id": "7",
"name": "Formatear Mensaje",
"type": "n8n-nodes-base.function",
"typeVersion": 1,
"position": [
1300,
300
],
"parameters": {
"functionCode": "let texto = \"Horarios para la fecha solicitada:\\n\"; for (const item of items) { texto += `\ud83d\udd50 ${item.json.hora} - ${item.json.evento}\\n`; } return [{ json: { mensaje_final: texto } }];"
},
"notes": "",
"credentials": {}
},
{
"id": "8",
"name": "Enviar por WhatsApp (Placeholder)",
"type": "n8n-nodes-base.noOp",
"typeVersion": 1,
"position": [
1500,
300
],
"parameters": {},
"notes": "",
"credentials": {}
}
],
"connections": {
"Webhook Trigger": [
[
{
"node": "Simular Mensaje Usuario",
"type": "main",
"index": 0
}
]
],
"Simular Mensaje Usuario": [
[
{
"node": "Interpretar Fecha",
"type": "main",
"index": 0
}
]
],
"Interpretar Fecha": [
[
{
"node": "Descargar Excel",
"type": "main",
"index": 0
}
]
],
"Descargar Excel": [
[
{
"node": "Leer Excel",
"type": "main",
"index": 0
}
]
],
"Leer Excel": [
[
{
"node": "Filtrar Horarios",
"type": "main",
"index": 0
}
]
],
"Filtrar Horarios": [
[
{
"node": "Formatear Mensaje",
"type": "main",
"index": 0
}
]
],
"Formatear Mensaje": [
[
{
"node": "Enviar por WhatsApp (Placeholder)",
"type": "main",
"index": 0
}
]
]
},
"active": false,
"settings": {},
"versionId": "1"
}
For the full experience including quality scoring and batch install features for each workflow upgrade to Pro
About this workflow
Consulta Horarios por WhatsApp desde Excel. Uses httpRequest, spreadsheetFile. Webhook trigger; 8 nodes.
Source: https://gist.github.com/Sceballosv0928/e7443bb011d84eaa683d3175d7f8954c — 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.
HR teams, IT Operations, and System Administrators managing employee onboarding at scale. It’s perfect if you use Odoo 18 to trigger account requests and need Redmine + GitLab accounts created instant
This workflow is a complete, production-ready solution for recovering abandoned carts in Shopify stores using a multi-channel, multi-touch approach. It automates personalized follow-ups via Email, SMS
qualiopi. Uses airtable, telegram, emailSend, httpRequest. Webhook trigger; 51 nodes.
This workflow automates end-to-end research analysis by coordinating multiple AI models—including NVIDIA NIM (Llama), OpenAI GPT-4, and Claude to analyze uploaded documents, extract insights, and gene
PsyCardv2. Uses executeCommand, telegram, readBinaryFile, googleDrive. Webhook trigger; 41 nodes.