adding the workflow collection to git

This commit is contained in:
Eliad Shahar
2025-05-14 11:58:29 +03:00
parent 05c94a30d5
commit 84c802cb50
2050 changed files with 984481 additions and 0 deletions

View File

@@ -0,0 +1,76 @@
{
"nodes": [
{
"name": "Plivo",
"type": "n8n-nodes-base.plivo",
"position": [
1030,
400
],
"parameters": {
"message": "=Hey! The temperature outside is {{$node[\"OpenWeatherMap\"].json[\"main\"][\"temp\"]}}°C."
},
"credentials": {
"plivoApi": "Plivo API Credentials"
},
"typeVersion": 1
},
{
"name": "OpenWeatherMap",
"type": "n8n-nodes-base.openWeatherMap",
"position": [
830,
400
],
"parameters": {
"cityName": "berlin"
},
"credentials": {
"openWeatherMapApi": "owm"
},
"typeVersion": 1
},
{
"name": "Cron",
"type": "n8n-nodes-base.cron",
"position": [
630,
400
],
"parameters": {
"triggerTimes": {
"item": [
{
"hour": 9
}
]
}
},
"typeVersion": 1
}
],
"connections": {
"Cron": {
"main": [
[
{
"node": "OpenWeatherMap",
"type": "main",
"index": 0
}
]
]
},
"OpenWeatherMap": {
"main": [
[
{
"node": "Plivo",
"type": "main",
"index": 0
}
]
]
}
}
}