VIP注文アラート
中級
これはCRM分野の自動化ワークフローで、6個のノードを含みます。主にIf, Webhook, ZohoCrmなどのノードを使用。 Zoho CRMで high-valueな商談を自動タグ付けして、VIPアラートを送信
前提条件
- •HTTP Webhookエンドポイント(n8nが自動生成)
使用ノード (6)
カテゴリー
ワークフロープレビュー
ノード接続関係を可視化、ズームとパンをサポート
ワークフローをエクスポート
以下のJSON設定をn8nにインポートして、このワークフローを使用できます
{
"id": "UKluUCTyo3t8l8GF",
"meta": {
"instanceId": "8443f10082278c46aa5cf3acf8ff0f70061a2c58bce76efac814b16290845177",
"templateCredsSetupCompleted": true
},
"name": "VIP order Alert",
"tags": [],
"nodes": [
{
"id": "00ada32a-f2d5-43ea-816d-d2412a5cc014",
"name": "IF 高額注文",
"type": "n8n-nodes-base.if",
"position": [
-416,
32
],
"parameters": {
"conditions": {
"number": [
{
"value1": "={{ $json.body.salesorder.total }}",
"value2": 10000,
"operation": "larger"
}
]
}
},
"typeVersion": 1
},
{
"id": "3afa07be-d5da-4727-a5d9-cdbc693dc41e",
"name": "CRMでのVIPタグ更新",
"type": "n8n-nodes-base.zohoCrm",
"position": [
-192,
32
],
"parameters": {
"subject": "Vip order",
"resource": "purchaseOrder",
"operation": "upsert",
"Product_Details": [],
"additionalFields": {}
},
"credentials": {
"zohoOAuth2Api": {
"id": "QERxbfERX9gJprVe",
"name": "Zoho account"
}
},
"typeVersion": 1
},
{
"id": "b943b9e2-ef37-4609-bac6-1fee6b266126",
"name": "Webhook",
"type": "n8n-nodes-base.webhook",
"position": [
-640,
32
],
"webhookId": "565529c2-dc9c-4c06-9367-c9c1d6447c3d",
"parameters": {
"path": "565529c2-dc9c-4c06-9367-c9c1d6447c3d",
"options": {},
"httpMethod": "POST"
},
"typeVersion": 2
},
{
"id": "fd5663e9-9aac-488f-8b4b-e19477ca5b59",
"name": "付箋",
"type": "n8n-nodes-base.stickyNote",
"position": [
-944,
-288
],
"parameters": {
"color": 3,
"width": 304,
"height": 320,
"content": "Webhook Node (Entry Point)\n\nPurpose: This is the trigger that starts the workflow\nWhat it does: Listens for incoming HTTP POST requests on a specific webhook URL\n\nWhen it activates: When an external system (likely an e-commerce platform or order management system) sends order data to this webhook endpoint\n\nData received: Contains sales order information including the total amount in $json.body.salesorder.total"
},
"typeVersion": 1
},
{
"id": "281a6f58-e592-43ba-a2a8-e99442f1b6b6",
"name": "付箋1",
"type": "n8n-nodes-base.stickyNote",
"position": [
-528,
-384
],
"parameters": {
"color": 5,
"width": 304,
"height": 400,
"content": "IF High Value Order Node (Decision Logic)\n\nPurpose: Acts as a conditional filter to identify high-value orders\n\nWhat it does: Checks if the incoming order meets VIP criteria\n\nCondition: Evaluates whether the order total is greater than 10,000 (currency not specified, but likely the system's base currency)\n\nLogic:\nIf order total > 10,000 → Routes to the \"True\" path (proceeds to next node)\nIf order total ≤ 10,000 → Routes to the \"False\" path (workflow ends, no action taken)"
},
"typeVersion": 1
},
{
"id": "6425a6de-69d4-4226-950f-75a882bdeecf",
"name": "付箋2",
"type": "n8n-nodes-base.stickyNote",
"position": [
-128,
-288
],
"parameters": {
"color": 6,
"width": 320,
"height": 304,
"content": "CRM Update VIP Tag Node (Action)\n\nPurpose: Updates the customer record in Zoho CRM when a VIP order is detected\n\nWhat it does: Creates or updates a purchase order record in Zoho CRM with VIP designation\n\nIntegration: Connected to Zoho CRM using OAuth2 credentials\n\nAction taken: Adds a \"Vip order\" subject/tag to mark this customer/order as VIP in the CRM system"
},
"typeVersion": 1
}
],
"active": false,
"pinData": {},
"settings": {
"executionOrder": "v1"
},
"versionId": "394ab332-e65a-4c11-afe5-4d904377957c",
"connections": {
"b943b9e2-ef37-4609-bac6-1fee6b266126": {
"main": [
[
{
"node": "00ada32a-f2d5-43ea-816d-d2412a5cc014",
"type": "main",
"index": 0
}
]
]
},
"00ada32a-f2d5-43ea-816d-d2412a5cc014": {
"main": [
[
{
"node": "3afa07be-d5da-4727-a5d9-cdbc693dc41e",
"type": "main",
"index": 0
}
],
[]
]
}
}
}よくある質問
このワークフローの使い方は?
上記のJSON設定コードをコピーし、n8nインスタンスで新しいワークフローを作成して「JSONからインポート」を選択、設定を貼り付けて認証情報を必要に応じて変更してください。
このワークフローはどんな場面に適していますか?
中級 - 顧客管理
有料ですか?
このワークフローは完全無料です。ただし、ワークフローで使用するサードパーティサービス(OpenAI APIなど)は別途料金が発生する場合があります。
関連ワークフロー
GoHighLevel から顧客の续约リマインドを自動のに Gmail と Slack へ送信
GoHighLevelからGmail、Slack、Google Sheetsへ顧客更新の自動リマインダーを送信
If
Code
Gmail
+
If
Code
Gmail
19 ノードRahul Joshi
顧客管理
営業担当パフォーマンストラッカー
HighLevel CRM、GPT-4o、Notion、そしてSlackを使った自動化のな営業ランキング
If
Code
Slack
+
If
Code
Slack
21 ノードRahul Joshi
顧客管理
Stripe決済から自動テンプレートを顧客に配送
Stripe、GPT-4o、Gmailを使った自動テンプレート配信システム
If
Code
Gmail
+
If
Code
Gmail
44 ノードRahul Joshi
顧客管理
アフターサービスレビューコレクター
振り返り収集と感情分析:HighLevel、GPT-4o、Gmail、Slack
If
Wait
Gmail
+
If
Wait
Gmail
20 ノードRahul Joshi
顧客管理
提案生成_草稿保存の自動化
Azure GPT-4o を使ってビジネスプレゼンションを生成して Sheets から Gmail ダスクトに保存
If
Code
Gmail
+
If
Code
Gmail
16 ノードRahul Joshi
顧客管理
1 日ごとの販売レポート
Google Sheets から 1 日ごとに販売報告書を作成し、メールにフォーマットされた要約を添付
If
Code
Email Send
+
If
Code
Email Send
12 ノードRahul Joshi
顧客管理
ワークフロー情報
難易度
中級
ノード数6
カテゴリー1
ノードタイプ4
作成者
Rahul Joshi
@rahul08Rahul Joshi is a seasoned technology leader specializing in the n8n automation tool and AI-driven workflow automation. With deep expertise in building open-source workflow automation and self-hosted automation platforms, he helps organizations eliminate manual processes through intelligent n8n ai agent automation solutions.
外部リンク
n8n.ioで表示 →
このワークフローを共有