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": "CampusFlow Automation",
"nodes": [
{
"parameters": {
"path": "campusflow",
"responseMode": "lastNode",
"options": {}
},
"id": "1",
"name": "Webhook",
"type": "n8n-nodes-base.webhook",
"typeVersion": 1,
"position": [
250,
300
]
},
{
"parameters": {
"conditions": {
"string": [
{
"value1": "={{ $json.body.type }}",
"value2": "deadline"
}
]
}
},
"id": "2",
"name": "IF Deadline or Notice",
"type": "n8n-nodes-base.if",
"typeVersion": 1,
"position": [
450,
300
]
},
{
"parameters": {
"operation": "send",
"message": "=Reminder: {{ $json.body.title }} on {{ $json.body.date }}\\nDetails: {{ $json.body.description }}",
"to": "={{ $json.body.whatsapp || ('whatsapp:' + $json.body.phone) }}",
"from": "whatsapp:+14155238886"
},
"id": "4",
"name": "Twilio WhatsApp (Deadline)",
"type": "n8n-nodes-base.twilio",
"typeVersion": 1,
"position": [
700,
150
],
"credentials": {
"twilioApi": {
"name": "<your credential>"
}
}
},
{
"parameters": {
"resource": "chat",
"model": "gpt-3.5-turbo",
"messages": {
"message": [
{
"role": "system",
"content": "You are a helpful assistant."
},
{
"role": "user",
"content": "=Summarize this notice in exactly 3 short bullet points:\\nTitle: {{ $json.body.title }}\\nDescription: {{ $json.body.description }}"
}
]
}
},
"id": "5",
"name": "OpenAI Summary",
"type": "n8n-nodes-base.openAi",
"typeVersion": 1,
"position": [
700,
450
],
"credentials": {
"openAiApi": {
"name": "<your credential>"
}
}
},
{
"parameters": {
"operation": "send",
"message": "=Notice Summary (${{ $node[\"Webhook\"].json.body.title }}):\\n{{ $json.choices[0].message.content }}",
"to": "={{ $node[\"Webhook\"].json.body.whatsapp || ('whatsapp:' + $node[\"Webhook\"].json.body.phone) }}",
"from": "whatsapp:+14155238886"
},
"id": "6",
"name": "Twilio WhatsApp (Notice)",
"type": "n8n-nodes-base.twilio",
"typeVersion": 1,
"position": [
950,
450
],
"credentials": {
"twilioApi": {
"name": "<your credential>"
}
}
}
],
"connections": {
"Webhook": {
"main": [
[
{
"node": "IF Deadline or Notice",
"type": "main",
"index": 0
}
]
]
},
"IF Deadline or Notice": {
"main": [
[
{
"node": "Twilio WhatsApp (Deadline)",
"type": "main",
"index": 0
}
],
[
{
"node": "OpenAI Summary",
"type": "main",
"index": 0
}
]
]
},
"OpenAI Summary": {
"main": [
[
{
"node": "Twilio WhatsApp (Notice)",
"type": "main",
"index": 0
}
]
]
}
},
"settings": {}
}
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.
openAiApitwilioApi
For the full experience including quality scoring and batch install features for each workflow upgrade to Pro
About this workflow
CampusFlow Automation. Uses twilio, openAi. Webhook trigger; 5 nodes.
Source: https://github.com/vishwaksen21/campusflow/blob/dbb3f48ce3d2bd89e4ee4016a3c02331ae06bd25/n8n/campusflow_workflow.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.
This workflow helps solar sales teams reactivate cold leads automatically using value-first SMS follow-ups, AI-powered sentiment detection, real-time alerts, and CRM tracking.
Triggered when a lead submits your website contact form via webhook Logs the lead's Name, Phone, Email, and Interest to Google Sheets GPT-4.1 generates a personalised SMS and sends it instantly via Tw
Fluxo WhatsApp com Envio de Vídeo. Uses httpRequest, twilio, openAi. Webhook trigger; 10 nodes.
DetranCE - Atendimento WhatsApp RAG. Uses openAi, httpRequest, twilio. Webhook trigger; 7 nodes.
Webhook → Jira “Bug Suspicion” → Slack QA Escalation. Uses openAi, jira, slack. Webhook trigger; 12 nodes.