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 →
{
"id": "92",
"name": "Send an SMS to a number whenever you go out",
"nodes": [
{
"name": "Pushcut Trigger",
"type": "n8n-nodes-base.pushcutTrigger",
"position": [
470,
300
],
"parameters": {
"actionName": "Leaving Home"
},
"credentials": {
"pushcutApi": "<your credential>"
},
"typeVersion": 1
},
{
"name": "Twilio",
"type": "n8n-nodes-base.twilio",
"position": [
670,
300
],
"parameters": {
"to": "123",
"from": "123",
"message": "=I'm {{$node[\"Pushcut Trigger\"].json[\"input\"]}}"
},
"credentials": {
"twilioApi": "<your credential>"
},
"typeVersion": 1
}
],
"active": false,
"settings": {},
"connections": {
"Pushcut Trigger": {
"main": [
[
{
"node": "Twilio",
"type": "main",
"index": 0
}
]
]
}
}
}
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.
pushcutApitwilioApi
About this workflow
Send an SMS to a number whenever you go out. Uses pushcutTrigger, twilio. Event-driven trigger; 2 nodes.
Source: https://github.com/Zie619/n8n-workflows — original creator credit. Request a take-down →