n8n网站停机监控
高级
这是一个DevOps领域的自动化工作流,包含 20 个节点。主要使用 If, Code, Gmail, Slack, Telegram 等节点。 多网站监控系统,支持电话通知
前置要求
- •Google 账号和 Gmail API 凭证
- •Slack Bot Token 或 Webhook URL
- •Telegram Bot Token
- •可能需要目标 API 的认证凭证
- •Google Sheets API 凭证
分类
工作流预览
可视化展示节点连接关系,支持缩放和平移
导出工作流
复制以下 JSON 配置到 n8n 导入,即可使用此工作流
{
"id": "Cki3H3LKIaoXKG1r",
"meta": {
"instanceId": "fcb622cbd5234c565b9b78babeaf0ea2455df9d2aad0d1adff7c1ef99583e685",
"templateCredsSetupCompleted": true
},
"name": "n8n 网站停机监控",
"tags": [],
"nodes": [
{
"id": "89285dd4-89d7-4726-b2d5-70b919d1738a",
"name": "计划触发器",
"type": "n8n-nodes-base.scheduleTrigger",
"position": [
-1120,
2425
],
"parameters": {
"rule": {
"interval": [
{}
]
}
},
"typeVersion": 1.2
},
{
"id": "f624f586-07eb-4e5e-b748-9e5605e2b102",
"name": "遍历项目",
"type": "n8n-nodes-base.splitInBatches",
"position": [
-680,
2425
],
"parameters": {
"options": {}
},
"typeVersion": 3
},
{
"id": "4bf3a7b5-62a1-402d-bf22-3222d1767a67",
"name": "检查网站状态",
"type": "n8n-nodes-base.httpRequest",
"position": [
-460,
1900
],
"parameters": {
"url": "={{ $json['Website URL'] }}",
"options": {
"timeout": 5000,
"response": {
"response": {
"fullResponse": true
}
}
}
},
"typeVersion": 4.2
},
{
"id": "6f17ae5e-5451-4b78-99b1-20fa16255ead",
"name": "网站 URL",
"type": "n8n-nodes-base.googleSheets",
"position": [
-900,
2425
],
"parameters": {
"options": {},
"sheetName": {
"__rl": true,
"mode": "list",
"value": 959117872,
"cachedResultUrl": "https://docs.google.com/spreadsheets/d/1_VVpkIvpYQigw5q0KmPXUAC2aV2rk1nRQLQZ7YK2KwY/edit#gid=959117872",
"cachedResultName": "Sheet1"
},
"documentId": {
"__rl": true,
"mode": "list",
"value": "1_VVpkIvpYQigw5q0KmPXUAC2aV2rk1nRQLQZ7YK2KwY",
"cachedResultUrl": "https://docs.google.com/spreadsheets/d/1_VVpkIvpYQigw5q0KmPXUAC2aV2rk1nRQLQZ7YK2KwY/edit?usp=drivesdk",
"cachedResultName": "Website Moniter"
}
},
"credentials": {
"googleSheetsOAuth2Api": {
"id": "AjFU8eA6fXFRo47v",
"name": "Google Sheets account"
}
},
"executeOnce": false,
"typeVersion": 4.6
},
{
"id": "9a429a0a-06f0-49ca-9d6a-d2bfa55a996c",
"name": "获取活动停机记录",
"type": "n8n-nodes-base.googleSheets",
"position": [
-20,
1800
],
"parameters": {
"options": {},
"filtersUI": {
"values": [
{
"lookupValue": "={{ $('Loop Over Items').item.json['Website URL'] }}",
"lookupColumn": "Website URL"
},
{
"lookupColumn": "Up Time"
}
]
},
"sheetName": {
"__rl": true,
"mode": "list",
"value": "gid=0",
"cachedResultUrl": "https://docs.google.com/spreadsheets/d/1_VVpkIvpYQigw5q0KmPXUAC2aV2rk1nRQLQZ7YK2KwY/edit#gid=0",
"cachedResultName": "Sheet2"
},
"documentId": {
"__rl": true,
"mode": "list",
"value": "1_VVpkIvpYQigw5q0KmPXUAC2aV2rk1nRQLQZ7YK2KwY",
"cachedResultUrl": "https://docs.google.com/spreadsheets/d/1_VVpkIvpYQigw5q0KmPXUAC2aV2rk1nRQLQZ7YK2KwY/edit?usp=drivesdk",
"cachedResultName": "Website Moniter"
}
},
"credentials": {
"googleSheetsOAuth2Api": {
"id": "AjFU8eA6fXFRo47v",
"name": "Google Sheets account"
}
},
"executeOnce": false,
"typeVersion": 4.6,
"alwaysOutputData": true
},
{
"id": "57f054ee-8f40-45a9-9da9-3befd1ac489c",
"name": "更新运行时间和总停机时间",
"type": "n8n-nodes-base.googleSheets",
"position": [
420,
1800
],
"parameters": {
"columns": {
"value": {
"Up Time": "={{ new Date().toLocaleTimeString('en-GB', { hour12: false }) }}",
"row_number": "={{ $json.row_number }}",
"Website URL": "={{ $json['Website URL'] }}",
"Total downtime": "={{(() => {\n const downTimeStr = $input.first().json['Down Time'];\n\n // Get current time in HH:MM:SS format\n const now = new Date();\n const upTimeStr = now.toLocaleTimeString('en-GB', { hour12: false });\n\n function parseTime(timeStr) {\n const [h, m, s] = timeStr.split(\":\").map(Number);\n const date = new Date();\n date.setHours(h, m, s, 0);\n return date;\n }\n\n const downTime = parseTime(downTimeStr);\n const upTime = parseTime(upTimeStr);\n\n // Handle overnight scenario\n if (upTime < downTime) {\n upTime.setDate(upTime.getDate() + 1);\n }\n\n const diffMs = upTime - downTime;\n const totalMinutes = Math.floor(diffMs / 60000);\n const hours = Math.floor(totalMinutes / 60);\n const minutes = totalMinutes % 60;\n const seconds = Math.floor((diffMs % 60000) / 1000);\n\n return `${hours}h ${minutes}m ${seconds}s`;\n})()}}"
},
"schema": [
{
"id": "Website URL",
"type": "string",
"display": true,
"removed": false,
"required": false,
"displayName": "Website URL",
"defaultMatch": false,
"canBeUsedToMatch": true
},
{
"id": "Down Time",
"type": "string",
"display": true,
"removed": true,
"required": false,
"displayName": "Down Time",
"defaultMatch": false,
"canBeUsedToMatch": true
},
{
"id": "Up Time",
"type": "string",
"display": true,
"removed": false,
"required": false,
"displayName": "Up Time",
"defaultMatch": false,
"canBeUsedToMatch": true
},
{
"id": "Total downtime",
"type": "string",
"display": true,
"removed": false,
"required": false,
"displayName": "Total downtime",
"defaultMatch": false,
"canBeUsedToMatch": true
},
{
"id": "row_number",
"type": "string",
"display": true,
"removed": false,
"readOnly": true,
"required": false,
"displayName": "row_number",
"defaultMatch": false,
"canBeUsedToMatch": true
}
],
"mappingMode": "defineBelow",
"matchingColumns": [
"row_number"
],
"attemptToConvertTypes": false,
"convertFieldsToString": false
},
"options": {},
"operation": "update",
"sheetName": {
"__rl": true,
"mode": "list",
"value": "gid=0",
"cachedResultUrl": "https://docs.google.com/spreadsheets/d/1_VVpkIvpYQigw5q0KmPXUAC2aV2rk1nRQLQZ7YK2KwY/edit#gid=0",
"cachedResultName": "Sheet2"
},
"documentId": {
"__rl": true,
"mode": "list",
"value": "1_VVpkIvpYQigw5q0KmPXUAC2aV2rk1nRQLQZ7YK2KwY",
"cachedResultUrl": "https://docs.google.com/spreadsheets/d/1_VVpkIvpYQigw5q0KmPXUAC2aV2rk1nRQLQZ7YK2KwY/edit?usp=drivesdk",
"cachedResultName": "Website Moniter"
}
},
"credentials": {
"googleSheetsOAuth2Api": {
"id": "AjFU8eA6fXFRo47v",
"name": "Google Sheets account"
}
},
"executeOnce": false,
"typeVersion": 4.6,
"alwaysOutputData": true
},
{
"id": "e6575156-1a32-429a-9ee7-deef3c4f863d",
"name": "查找现有记录",
"type": "n8n-nodes-base.code",
"position": [
200,
2200
],
"parameters": {
"jsCode": "let hasIncompleteRecord = false;\n\nfor (const item of $input.all()) {\n const url = item.json['Website URL']?.trim();\n const downTime = item.json['Down Time']?.trim();\n const upTime = item.json['Up Time']?.trim();\n const totalDowntime = item.json['Total downtime']?.trim();\n\n if (url && downTime && (!upTime || !totalDowntime)) {\n hasIncompleteRecord = true;\n }\n}\n\nreturn [\n {\n json: {\n status: hasIncompleteRecord ? \"yes\" : \"no\",\n websites: $input.first().json['Website URL']\n }\n }\n];\n"
},
"typeVersion": 2
},
{
"id": "220717dd-659a-44af-98f8-3e03aa0021ea",
"name": "添加停机记录",
"type": "n8n-nodes-base.googleSheets",
"position": [
640,
2200
],
"parameters": {
"columns": {
"value": {
"Down Time": "={{ new Date().toLocaleTimeString('en-GB', { hour12: false }) }}",
"Website URL": "={{ $('Loop Over Items').item.json[\"Website URL\"] }}"
},
"schema": [
{
"id": "Website URL",
"type": "string",
"display": true,
"removed": false,
"required": false,
"displayName": "Website URL",
"defaultMatch": false,
"canBeUsedToMatch": true
},
{
"id": "Down Time",
"type": "string",
"display": true,
"removed": false,
"required": false,
"displayName": "Down Time",
"defaultMatch": false,
"canBeUsedToMatch": true
},
{
"id": "Up Time",
"type": "string",
"display": true,
"removed": true,
"required": false,
"displayName": "Up Time",
"defaultMatch": false,
"canBeUsedToMatch": true
},
{
"id": "Total downtime",
"type": "string",
"display": true,
"removed": true,
"required": false,
"displayName": "Total downtime",
"defaultMatch": false,
"canBeUsedToMatch": true
},
{
"id": "row_number",
"type": "string",
"display": true,
"removed": false,
"readOnly": true,
"required": false,
"displayName": "row_number",
"defaultMatch": false,
"canBeUsedToMatch": true
}
],
"mappingMode": "defineBelow",
"matchingColumns": [
"Website URL"
],
"attemptToConvertTypes": false,
"convertFieldsToString": false
},
"options": {},
"operation": "append",
"sheetName": {
"__rl": true,
"mode": "list",
"value": "gid=0",
"cachedResultUrl": "https://docs.google.com/spreadsheets/d/1_VVpkIvpYQigw5q0KmPXUAC2aV2rk1nRQLQZ7YK2KwY/edit#gid=0",
"cachedResultName": "Sheet2"
},
"documentId": {
"__rl": true,
"mode": "list",
"value": "1_VVpkIvpYQigw5q0KmPXUAC2aV2rk1nRQLQZ7YK2KwY",
"cachedResultUrl": "https://docs.google.com/spreadsheets/d/1_VVpkIvpYQigw5q0KmPXUAC2aV2rk1nRQLQZ7YK2KwY/edit?usp=drivesdk",
"cachedResultName": "Website Moniter"
}
},
"credentials": {
"googleSheetsOAuth2Api": {
"id": "AjFU8eA6fXFRo47v",
"name": "Google Sheets account"
}
},
"executeOnce": false,
"typeVersion": 4.6
},
{
"id": "59d163f7-771e-40e6-bf5f-e091de3233a9",
"name": "电话通知",
"type": "n8n-nodes-base.httpRequest",
"position": [
860,
2580
],
"parameters": {
"url": "https://api.vapi.ai/call",
"method": "POST",
"options": {},
"jsonBody": "={\n \"assistantId\": \"assistant_id\",\n \"assistantOverrides\": {\n \"variableValues\": {\n \"name\":\"John\",\n \"web_domain\":\"{{ $json['Website URL'] }}\"\n }\n },\n \"customer\": {\n \"number\": \"+919999999999\"\n },\n \"phoneNumberId\": \"phone_number_id\"\n}",
"sendBody": true,
"sendHeaders": true,
"specifyBody": "json",
"headerParameters": {
"parameters": [
{
"name": "Authorization",
"value": "Bearer vapi_api_key"
}
]
}
},
"typeVersion": 4.2,
"alwaysOutputData": true
},
{
"id": "5345ee2f-55bf-4211-bd40-286fbf522af0",
"name": "检查是否存在停机",
"type": "n8n-nodes-base.if",
"position": [
420,
2200
],
"parameters": {
"options": {},
"conditions": {
"options": {
"version": 2,
"leftValue": "",
"caseSensitive": true,
"typeValidation": "strict"
},
"combinator": "and",
"conditions": [
{
"id": "9e5df4d3-c9fd-4311-ae97-c06fcbcc1c97",
"operator": {
"type": "string",
"operation": "equals"
},
"leftValue": "={{ $json.status }}",
"rightValue": "yes"
}
]
}
},
"typeVersion": 2.2
},
{
"id": "ef94a17c-ddd7-48f2-88a1-a0dd3790e20b",
"name": "停机邮件通知",
"type": "n8n-nodes-base.gmail",
"position": [
860,
1975
],
"webhookId": "01059553-6361-4349-99c0-d6e467198e19",
"parameters": {
"sendTo": "example@gmail.com",
"message": "=Hi there,\n\nThe Website {{ $json['Website URL'] }} is Down. Please take the required action as soon as possible.",
"options": {},
"subject": "=Your site is down!!"
},
"credentials": {
"gmailOAuth2": {
"id": "IXi1kkbb2nCpoTSR",
"name": "Gmail account"
}
},
"typeVersion": 2.1
},
{
"id": "e79a52cd-7ea4-41fc-80e3-82ac947d4d1f",
"name": "停机 Slack 通知",
"type": "n8n-nodes-base.slack",
"position": [
860,
2175
],
"webhookId": "379f0487-218b-4137-9a89-02c29f9ab48f",
"parameters": {
"text": "=🚨 Alert:| Hi there, The {{ $json['Website URL'] }} website is currently down. Kindly look into this issue and take necessary action as soon as possible. Thank you.",
"user": {
"__rl": true,
"mode": "list",
"value": "U08QEDH1YVB",
"cachedResultName": "mail"
},
"select": "user",
"otherOptions": {
"includeLinkToWorkflow": false
},
"authentication": "oAuth2"
},
"credentials": {
"slackOAuth2Api": {
"id": "zPPPZzCjzqdYPosb",
"name": "Slack account 2"
}
},
"typeVersion": 2.3
},
{
"id": "8203750f-b83b-4f7e-9982-69bf88e3ccb2",
"name": "停机 Telegram 通知",
"type": "n8n-nodes-base.telegram",
"position": [
860,
2375
],
"webhookId": "b76cf08e-146f-4dce-8b55-0467b6130b5c",
"parameters": {
"text": "=🚨 Alert: Hi there, | The {{ $json['Website URL'] }} website is currently down. Kindly look into this issue and take necessary action as soon as possible. Thank you.",
"chatId": "-1002286661825",
"additionalFields": {}
},
"credentials": {
"telegramApi": {
"id": "LXHr60rCVMuiROdo",
"name": "Telegram account 2"
}
},
"typeVersion": 1.2
},
{
"id": "5a86f273-6c29-47c8-9c88-9f36bd56cfba",
"name": "恢复邮件通知",
"type": "n8n-nodes-base.gmail",
"position": [
640,
1600
],
"webhookId": "01059553-6361-4349-99c0-d6e467198e19",
"parameters": {
"sendTo": "example@gmail.com",
"message": "=Hi there,\n\nWe're excited to announce that the {{ $('Website URLs').item.json['Website URL'] }} is now live!\nFeel free to visit and explore.",
"options": {},
"subject": "=Site is now working fine."
},
"credentials": {
"gmailOAuth2": {
"id": "IXi1kkbb2nCpoTSR",
"name": "Gmail account"
}
},
"typeVersion": 2.1
},
{
"id": "19a35cc4-9477-476b-973c-02ccbe4746a4",
"name": "恢复 Slack 通知",
"type": "n8n-nodes-base.slack",
"position": [
640,
1800
],
"webhookId": "379f0487-218b-4137-9a89-02c29f9ab48f",
"parameters": {
"text": "We're excited to announce that the {{ $('Website URLs').item.json['Website URL'] }} is now live! Feel free to visit and explore.",
"user": {
"__rl": true,
"mode": "list",
"value": "U08QEDH1YVB",
"cachedResultName": "mail"
},
"select": "user",
"otherOptions": {
"includeLinkToWorkflow": false
},
"authentication": "oAuth2"
},
"credentials": {
"slackOAuth2Api": {
"id": "zPPPZzCjzqdYPosb",
"name": "Slack account 2"
}
},
"typeVersion": 2.3
},
{
"id": "5465b80d-c302-4931-988e-f36ac48bcdef",
"name": "恢复 Telegram 通知",
"type": "n8n-nodes-base.telegram",
"position": [
640,
2000
],
"webhookId": "b76cf08e-146f-4dce-8b55-0467b6130b5c",
"parameters": {
"text": "We're excited to announce that the {{ $('Website URLs').item.json['Website URL'] }} is now live! Feel free to visit and explore.",
"chatId": "-1002286661825",
"additionalFields": {}
},
"credentials": {
"telegramApi": {
"id": "LXHr60rCVMuiROdo",
"name": "Telegram account 2"
}
},
"typeVersion": 1.2
},
{
"id": "ddcd8c3d-a22e-4ae7-bf00-3677c6a9a10c",
"name": "便签",
"type": "n8n-nodes-base.stickyNote",
"position": [
-340,
1460
],
"parameters": {
"width": 560,
"height": 280,
"content": "### 带日志记录的网站停机监控"
},
"typeVersion": 1
},
{
"id": "1a4b919f-6e78-48f3-968d-0caae9fe56f4",
"name": "如果存在停机记录",
"type": "n8n-nodes-base.if",
"position": [
200,
1800
],
"parameters": {
"options": {},
"conditions": {
"options": {
"version": 2,
"leftValue": "",
"caseSensitive": true,
"typeValidation": "strict"
},
"combinator": "and",
"conditions": [
{
"id": "1337beb6-7974-45ab-9fa0-93f5ce0ee7b7",
"operator": {
"type": "boolean",
"operation": "false",
"singleValue": true
},
"leftValue": "={{(() => { const data = $json; return Object.keys(data).length === 0; })()}}",
"rightValue": ""
}
]
}
},
"typeVersion": 2.2
},
{
"id": "c60f06ef-ab17-40d1-91b7-1ed1683c9c42",
"name": "如果网站恢复",
"type": "n8n-nodes-base.if",
"position": [
-240,
1900
],
"parameters": {
"conditions": {
"number": [
{
"value1": "={{$json[\"statusCode\"]}}",
"value2": 400,
"operation": "equal"
}
]
}
},
"typeVersion": 1
},
{
"id": "08a21aa6-89c6-406b-becd-43688b793b2c",
"name": "获取现有停机记录",
"type": "n8n-nodes-base.googleSheets",
"position": [
-20,
2200
],
"parameters": {
"options": {},
"filtersUI": {
"values": [
{
"lookupValue": "={{ $('Loop Over Items').item.json['Website URL'] }}",
"lookupColumn": "Website URL"
}
]
},
"sheetName": {
"__rl": true,
"mode": "list",
"value": "gid=0",
"cachedResultUrl": "https://docs.google.com/spreadsheets/d/1_VVpkIvpYQigw5q0KmPXUAC2aV2rk1nRQLQZ7YK2KwY/edit#gid=0",
"cachedResultName": "Sheet2"
},
"documentId": {
"__rl": true,
"mode": "list",
"value": "1_VVpkIvpYQigw5q0KmPXUAC2aV2rk1nRQLQZ7YK2KwY",
"cachedResultUrl": "https://docs.google.com/spreadsheets/d/1_VVpkIvpYQigw5q0KmPXUAC2aV2rk1nRQLQZ7YK2KwY/edit?usp=drivesdk",
"cachedResultName": "Website Moniter"
}
},
"credentials": {
"googleSheetsOAuth2Api": {
"id": "AjFU8eA6fXFRo47v",
"name": "Google Sheets account"
}
},
"typeVersion": 4.6,
"alwaysOutputData": true
}
],
"active": false,
"pinData": {},
"settings": {
"executionOrder": "v1"
},
"versionId": "da032169-3ed0-4c4b-a5a9-bef39dd9bf55",
"connections": {
"If Site Up": {
"main": [
[
{
"node": "Get Active Down Record",
"type": "main",
"index": 0
}
],
[
{
"node": "Get Existing Down Records",
"type": "main",
"index": 0
}
]
]
},
"Website URLs": {
"main": [
[
{
"node": "Loop Over Items",
"type": "main",
"index": 0
}
]
]
},
"Loop Over Items": {
"main": [
[],
[
{
"node": "Check website status",
"type": "main",
"index": 0
}
]
]
},
"Schedule Trigger": {
"main": [
[
{
"node": "Website URLs",
"type": "main",
"index": 0
}
]
]
},
"Add Downtime Record": {
"main": [
[
{
"node": "Email Notification for Down",
"type": "main",
"index": 0
},
{
"node": "Slack Notification for Down",
"type": "main",
"index": 0
},
{
"node": "Telegram Notification for Down",
"type": "main",
"index": 0
},
{
"node": "Notify over Phone Call",
"type": "main",
"index": 0
}
]
]
},
"Check website status": {
"main": [
[
{
"node": "If Site Up",
"type": "main",
"index": 0
}
]
]
},
"Find Existing Record": {
"main": [
[
{
"node": "Check Downtime Exists",
"type": "main",
"index": 0
}
]
]
},
"If Down Record Exist": {
"main": [
[
{
"node": "Update Uptime and Total Downtime",
"type": "main",
"index": 0
}
],
[
{
"node": "Loop Over Items",
"type": "main",
"index": 0
}
]
]
},
"Check Downtime Exists": {
"main": [
[
{
"node": "Loop Over Items",
"type": "main",
"index": 0
}
],
[
{
"node": "Add Downtime Record",
"type": "main",
"index": 0
}
]
]
},
"Get Active Down Record": {
"main": [
[
{
"node": "If Down Record Exist",
"type": "main",
"index": 0
}
]
]
},
"Notify over Phone Call": {
"main": [
[
{
"node": "Loop Over Items",
"type": "main",
"index": 0
}
]
]
},
"Get Existing Down Records": {
"main": [
[
{
"node": "Find Existing Record",
"type": "main",
"index": 0
}
]
]
},
"Email Notification for Down": {
"main": [
[]
]
},
"Slack Notification for Down": {
"main": [
[]
]
},
"Telegram Notification for Up": {
"main": [
[
{
"node": "Loop Over Items",
"type": "main",
"index": 0
}
]
]
},
"Telegram Notification for Down": {
"main": [
[]
]
},
"Update Uptime and Total Downtime": {
"main": [
[
{
"node": "Email Notification for Up",
"type": "main",
"index": 0
},
{
"node": "Slack Notification for Up",
"type": "main",
"index": 0
},
{
"node": "Telegram Notification for Up",
"type": "main",
"index": 0
}
]
]
}
}
}常见问题
如何使用这个工作流?
复制上方的 JSON 配置代码,在您的 n8n 实例中创建新工作流并选择「从 JSON 导入」,粘贴配置后根据需要修改凭证设置即可。
这个工作流适合什么场景?
高级 - 开发运维
需要付费吗?
本工作流完全免费,您可以直接导入使用。但请注意,工作流中使用的第三方服务(如 OpenAI API)可能需要您自行付费。
相关工作流推荐
Twitter监控工作流
使用OpenAI、Google表格和Slack提醒自动化Twitter情感分析
If
Set
Slack
+10
15 节点InfyOm Technologies
市场调研
n8n备份管家v3
工作流自动备份至GitHub,支持邮件/Telegram通知
If
Code
Gmail
+6
21 节点Builds.Cool
开发运维
使用GPT-4o、WordPress和LinkedIn发布自动化RSS内容到博客文章
使用GPT-4o、WordPress和LinkedIn发布自动化RSS内容到博客文章
If
Set
Code
+21
40 节点Immanuel
人工智能
3D产品视频
为电商店铺从2D图像生成3D产品视频
If
Code
Wait
+6
21 节点InfyOm Technologies
设计
自动化API正常运行时间监控与即时停机警报
API正常运行时间监控,含WhatsApp警报和Google表格管理
If
Code
Wait
+6
17 节点Oneclick AI Squad
开发运维
将您的工作流保存到 GitHub 仓库
每日工作流备份至 GitHub 并发送 Slack 通知
If
N8n
Set
+10
18 节点Andrew
开发运维
工作流信息
难度等级
高级
节点数量20
分类1
节点类型10
作者
InfyOm Technologies
@infyomWe are an AI Automation Agency focusing on various AI Automation Services like, workflow automation, shopify automation, chatbot developerment, custom ai agent development and more.
外部链接
在 n8n.io 查看 →
分享此工作流