8
n8n 한국어amn8n.com

VIP 주문 알림

중급

이것은CRM분야의자동화 워크플로우로, 6개의 노드를 포함합니다.주로 If, Webhook, ZohoCrm 등의 노드를 사용하며. Zoho CRM에서 고가치 판매 주문 자동 태그 지정 및 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": "조건 분기 High Value Order",
      "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 Update VIP Tag",
      "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": {
    "Webhook": {
      "main": [
        [
          {
            "node": "IF High Value Order",
            "type": "main",
            "index": 0
          }
        ]
      ]
    },
    "IF High Value Order": {
      "main": [
        [
          {
            "node": "3afa07be-d5da-4727-a5d9-cdbc693dc41e",
            "type": "main",
            "index": 0
          }
        ],
        []
      ]
    }
  }
}
자주 묻는 질문

이 워크플로우를 어떻게 사용하나요?

위의 JSON 구성 코드를 복사하여 n8n 인스턴스에서 새 워크플로우를 생성하고 "JSON에서 가져오기"를 선택한 후, 구성을 붙여넣고 필요에 따라 인증 설정을 수정하세요.

이 워크플로우는 어떤 시나리오에 적합한가요?

중급 - 고객관계관리

유료인가요?

이 워크플로우는 완전히 무료이며 직접 가져와 사용할 수 있습니다. 다만, 워크플로우에서 사용하는 타사 서비스(예: OpenAI API)는 사용자 직접 비용을 지불해야 할 수 있습니다.

워크플로우 정보
난이도
중급
노드 수6
카테고리1
노드 유형4
난이도 설명

일정 경험을 가진 사용자를 위한 6-15개 노드의 중간 복잡도 워크플로우

저자
Rahul Joshi

Rahul Joshi

@rahul08

Rahul 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에서 보기

이 워크플로우 공유

카테고리

카테고리: 34