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": "84",
"name": "Send daily weather updates to a phone number using the Vonage node",
"nodes": [
{
"name": "Vonage",
"type": "n8n-nodes-base.vonage",
"position": [
770,
260
],
"parameters": {
"to": "1234",
"from": "Vonage APIs",
"message": "=Hey! The temperature outside is {{$node[\"OpenWeatherMap\"].json[\"main\"][\"temp\"]}}\u00b0C.",
"additionalFields": {}
},
"credentials": {
"vonageApi": "<your credential>"
},
"typeVersion": 1
},
{
"name": "Cron",
"type": "n8n-nodes-base.cron",
"position": [
370,
260
],
"parameters": {
"triggerTimes": {
"item": [
{
"hour": 9
}
]
}
},
"typeVersion": 1
},
{
"name": "OpenWeatherMap",
"type": "n8n-nodes-base.openWeatherMap",
"position": [
570,
260
],
"parameters": {
"cityName": "berlin"
},
"credentials": {
"openWeatherMapApi": "<your credential>"
},
"typeVersion": 1
}
],
"active": false,
"settings": {},
"connections": {
"Cron": {
"main": [
[
{
"node": "OpenWeatherMap",
"type": "main",
"index": 0
}
]
]
},
"OpenWeatherMap": {
"main": [
[
{
"node": "Vonage",
"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.
openWeatherMapApivonageApi
About this workflow
Send daily weather updates to a phone number using the Vonage node. Uses vonage, openWeatherMap. Scheduled trigger; 3 nodes.
Source: https://github.com/Zie619/n8n-workflows — original creator credit. Request a take-down →