feat: add folder support for workflows (fixes #70)
This commit is contained in:
83
workflows/Http/1043_HTTP_Telegram_Send_Webhook.json
Normal file
83
workflows/Http/1043_HTTP_Telegram_Send_Webhook.json
Normal file
@@ -0,0 +1,83 @@
|
||||
{
|
||||
"id": "57",
|
||||
"name": "Send a cocktail recipe every day via a Telegram",
|
||||
"nodes": [
|
||||
{
|
||||
"name": "Telegram",
|
||||
"type": "n8n-nodes-base.telegram",
|
||||
"position": [
|
||||
930,
|
||||
300
|
||||
],
|
||||
"parameters": {
|
||||
"file": "={{$node[\"HTTP Request\"].json[\"drinks\"][0][\"strDrinkThumb\"]}}",
|
||||
"chatId": "-485396236",
|
||||
"operation": "sendPhoto",
|
||||
"additionalFields": {
|
||||
"caption": "={{$node[\"HTTP Request\"].json[\"drinks\"][0][\"strInstructions\"]}}"
|
||||
}
|
||||
},
|
||||
"credentials": {
|
||||
"telegramApi": "telegram-bot"
|
||||
},
|
||||
"typeVersion": 1
|
||||
},
|
||||
{
|
||||
"name": "Cron",
|
||||
"type": "n8n-nodes-base.cron",
|
||||
"position": [
|
||||
530,
|
||||
300
|
||||
],
|
||||
"parameters": {
|
||||
"triggerTimes": {
|
||||
"item": [
|
||||
{
|
||||
"hour": 20
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
"typeVersion": 1
|
||||
},
|
||||
{
|
||||
"name": "HTTP Request",
|
||||
"type": "n8n-nodes-base.httpRequest",
|
||||
"position": [
|
||||
730,
|
||||
300
|
||||
],
|
||||
"parameters": {
|
||||
"url": "https://www.thecocktaildb.com/api/json/v1/1/random.php",
|
||||
"options": {}
|
||||
},
|
||||
"typeVersion": 1
|
||||
}
|
||||
],
|
||||
"active": false,
|
||||
"settings": {},
|
||||
"connections": {
|
||||
"Cron": {
|
||||
"main": [
|
||||
[
|
||||
{
|
||||
"node": "HTTP Request",
|
||||
"type": "main",
|
||||
"index": 0
|
||||
}
|
||||
]
|
||||
]
|
||||
},
|
||||
"HTTP Request": {
|
||||
"main": [
|
||||
[
|
||||
{
|
||||
"node": "Telegram",
|
||||
"type": "main",
|
||||
"index": 0
|
||||
}
|
||||
]
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user