{
  "workflow": {
    "id": 6681,
    "name": "Auto-tag high-value sales orders in Zoho CRM with VIP alert",
    "views": 415,
    "recentViews": 0,
    "totalViews": 415,
    "createdAt": "2025-07-30T08:11:04.596Z",
    "description": "**Description:**\n\nAutomatically detect and flag high-value sales orders as VIP in Zoho CRM using this intelligent n8n workflow. Ideal for eCommerce platforms, sales automation tools, or ERP systems, this automation template listens to incoming order data via webhook, checks if the sales order amount exceeds a set threshold (₹10,000 or $10,000), and updates the CRM with a VIP tag in real time.\n\nWhether you're scaling your operations or building a smart sales pipeline, this template ensures no important order goes unnoticed—real-time tagging of premium clients made easy.\n\n**What This Template Does (Step-by-Step)**\n\n🔔 Webhook Trigger (Sales Order Intake)\n- Receives real-time POST requests from your e-commerce, POS, or order management system\n- Captures order details, including total value ($json.body.salesorder.total)\n\n⚖️ High-Value Condition Check\n- Evaluates whether the sales order value exceeds a custom threshold (default: 10,000)\n- If order total &gt; 10,000, continues the workflow\n- Otherwise, halts execution (no CRM action)\n\n🏷️ Zoho CRM VIP Tagging\n- Automatically creates or updates a purchase order record in Zoho CRM\n- Tags the record with “VIP Order” to flag it for priority handling\n- Uses OAuth2-secured integration with your Zoho account\n\n**Required Integrations:**\n\n✅ Zoho CRM (OAuth2 credentials)\n✅ Any external sales/order system with webhook support\n\n**Use Cases:**\n\n💰 B2B sales teams tracking large enterprise orders\n🛍️ D2C brands prioritizing premium customers for fulfillment or loyalty\n🔁 CRM automation agencies building smart workflows for clients\n🧑‍💼 Sales managers setting up internal escalations or alerts for VIP deals\n\n**Key Features:**\n\n⚙️ No-code CRM automation using n8n\n🔒 Secure Zoho CRM integration via OAuth2\n⏱️ Instant tagging for faster follow-up\n🧠 Configurable logic (change the threshold easily!)\n📈 Scalable for thousands of incoming orders",
    "workflow": {
      "id": "UKluUCTyo3t8l8GF",
      "meta": {
        "instanceId": "8443f10082278c46aa5cf3acf8ff0f70061a2c58bce76efac814b16290845177",
        "templateCredsSetupCompleted": true
      },
      "name": "VIP order Alert",
      "tags": [],
      "nodes": [
        {
          "id": "00ada32a-f2d5-43ea-816d-d2412a5cc014",
          "name": "IF 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": "credential-id",
              "name": "zohoOAuth2Api Credential"
            }
          },
          "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": "Sticky Note",
          "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": "Sticky Note1",
          "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": "Sticky Note2",
          "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": "CRM Update VIP Tag",
                "type": "main",
                "index": 0
              }
            ],
            []
          ]
        }
      }
    },
    "lastUpdatedBy": 29,
    "workflowInfo": {
      "nodeCount": 6,
      "nodeTypes": {
        "n8n-nodes-base.if": {
          "count": 1
        },
        "n8n-nodes-base.webhook": {
          "count": 1
        },
        "n8n-nodes-base.zohoCrm": {
          "count": 1
        },
        "n8n-nodes-base.stickyNote": {
          "count": 3
        }
      }
    },
    "status": "published",
    "user": {
      "name": "Rahul Joshi",
      "username": "rahul08",
      "bio": "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.\n\n",
      "verified": true,
      "links": [
        "https://www.linkedin.com/in/callrahul/"
      ],
      "avatar": "https://gravatar.com/avatar/b6cf57822463143589b36ada06fbf6cb1509223a740fae3160b28f1ce41ccc12?r=pg&d=retro&size=200"
    },
    "nodes": [
      {
        "id": 20,
        "icon": "fa:map-signs",
        "name": "n8n-nodes-base.if",
        "codex": {
          "data": {
            "alias": [
              "Router",
              "Filter",
              "Condition",
              "Logic",
              "Boolean",
              "Branch"
            ],
            "details": "The IF node can be used to implement binary conditional logic in your workflow. You can set up one-to-many conditions to evaluate each item of data being inputted into the node. That data will either evaluate to TRUE or FALSE and route out of the node accordingly.\n\nThis node has multiple types of conditions: Bool, String, Number, and Date & Time.",
            "resources": {
              "generic": [
                {
                  "url": "https://n8n.io/blog/learn-to-automate-your-factorys-incident-reporting-a-step-by-step-guide/",
                  "icon": "🏭",
                  "label": "Learn to Automate Your Factory's Incident Reporting: A Step by Step Guide"
                },
                {
                  "url": "https://n8n.io/blog/2021-the-year-to-automate-the-new-you-with-n8n/",
                  "icon": "☀️",
                  "label": "2021: The Year to Automate the New You with n8n"
                },
                {
                  "url": "https://n8n.io/blog/why-business-process-automation-with-n8n-can-change-your-daily-life/",
                  "icon": "🧬",
                  "label": "Why business process automation with n8n can change your daily life"
                },
                {
                  "url": "https://n8n.io/blog/create-a-toxic-language-detector-for-telegram/",
                  "icon": "🤬",
                  "label": "Create a toxic language detector for Telegram in 4 step"
                },
                {
                  "url": "https://n8n.io/blog/no-code-ecommerce-workflow-automations/",
                  "icon": "store",
                  "label": "6 e-commerce workflows to power up your Shopify s"
                },
                {
                  "url": "https://n8n.io/blog/how-to-build-a-low-code-self-hosted-url-shortener/",
                  "icon": "🔗",
                  "label": "How to build a low-code, self-hosted URL shortener in 3 steps"
                },
                {
                  "url": "https://n8n.io/blog/automate-your-data-processing-pipeline-in-9-steps-with-n8n/",
                  "icon": "⚙️",
                  "label": "Automate your data processing pipeline in 9 steps"
                },
                {
                  "url": "https://n8n.io/blog/how-to-get-started-with-crm-automation-and-no-code-workflow-ideas/",
                  "icon": "👥",
                  "label": "How to get started with CRM automation (with 3 no-code workflow ideas"
                },
                {
                  "url": "https://n8n.io/blog/5-tasks-you-can-automate-with-notion-api/",
                  "icon": "⚡️",
                  "label": "5 tasks you can automate with the new Notion API "
                },
                {
                  "url": "https://n8n.io/blog/automate-google-apps-for-productivity/",
                  "icon": "💡",
                  "label": "15 Google apps you can combine and automate to increase productivity"
                },
                {
                  "url": "https://n8n.io/blog/automation-for-maintainers-of-open-source-projects/",
                  "icon": "🏷️",
                  "label": "How to automatically manage contributions to open-source projects"
                },
                {
                  "url": "https://n8n.io/blog/how-uproc-scraped-a-multi-page-website-with-a-low-code-workflow/",
                  "icon": " 🕸️",
                  "label": "How uProc scraped a multi-page website with a low-code workflow"
                },
                {
                  "url": "https://n8n.io/blog/5-workflow-automations-for-mattermost-that-we-love-at-n8n/",
                  "icon": "🤖",
                  "label": "5 workflow automations for Mattermost that we love at n8n"
                },
                {
                  "url": "https://n8n.io/blog/why-this-product-manager-loves-workflow-automation-with-n8n/",
                  "icon": "🧠",
                  "label": "Why this Product Manager loves workflow automation with n8n"
                },
                {
                  "url": "https://n8n.io/blog/sending-automated-congratulations-with-google-sheets-twilio-and-n8n/",
                  "icon": "🙌",
                  "label": "Sending Automated Congratulations with Google Sheets, Twilio, and n8n "
                },
                {
                  "url": "https://n8n.io/blog/how-to-set-up-a-ci-cd-pipeline-with-no-code/",
                  "icon": "🎡",
                  "label": "How to set up a no-code CI/CD pipeline with GitHub and TravisCI"
                },
                {
                  "url": "https://n8n.io/blog/benefits-of-automation-and-n8n-an-interview-with-hubspots-hugh-durkin/",
                  "icon": "🎖",
                  "label": "Benefits of automation and n8n: An interview with HubSpot's Hugh Durkin"
                },
                {
                  "url": "https://n8n.io/blog/aws-workflow-automation/",
                  "label": "7 no-code workflow automations for Amazon Web Services"
                }
              ],
              "primaryDocumentation": [
                {
                  "url": "https://docs.n8n.io/integrations/builtin/core-nodes/n8n-nodes-base.if/"
                }
              ]
            },
            "categories": [
              "Core Nodes"
            ],
            "nodeVersion": "1.0",
            "codexVersion": "1.0",
            "subcategories": {
              "Core Nodes": [
                "Flow"
              ]
            }
          }
        },
        "group": "[\"transform\"]",
        "defaults": {
          "name": "If",
          "color": "#408000"
        },
        "iconData": {
          "icon": "map-signs",
          "type": "icon"
        },
        "displayName": "If",
        "typeVersion": 2,
        "nodeCategories": [
          {
            "id": 9,
            "name": "Core Nodes"
          }
        ]
      },
      {
        "id": 47,
        "icon": "file:webhook.svg",
        "name": "n8n-nodes-base.webhook",
        "codex": {
          "data": {
            "alias": [
              "HTTP",
              "API",
              "Build",
              "WH"
            ],
            "resources": {
              "generic": [
                {
                  "url": "https://n8n.io/blog/learn-how-to-automatically-cross-post-your-content-with-n8n/",
                  "icon": "✍️",
                  "label": "Learn how to automatically cross-post your content with n8n"
                },
                {
                  "url": "https://n8n.io/blog/running-n8n-on-ships-an-interview-with-maranics/",
                  "icon": "🛳",
                  "label": "Running n8n on ships: An interview with Maranics"
                },
                {
                  "url": "https://n8n.io/blog/how-to-build-a-low-code-self-hosted-url-shortener/",
                  "icon": "🔗",
                  "label": "How to build a low-code, self-hosted URL shortener in 3 steps"
                },
                {
                  "url": "https://n8n.io/blog/what-are-apis-how-to-use-them-with-no-code/",
                  "icon": " 🪢",
                  "label": "What are APIs and how to use them with no code"
                },
                {
                  "url": "https://n8n.io/blog/5-tasks-you-can-automate-with-notion-api/",
                  "icon": "⚡️",
                  "label": "5 tasks you can automate with the new Notion API "
                },
                {
                  "url": "https://n8n.io/blog/how-a-digital-strategist-uses-n8n-for-online-marketing/",
                  "icon": "💻",
                  "label": "How a digital strategist uses n8n for online marketing"
                },
                {
                  "url": "https://n8n.io/blog/the-ultimate-guide-to-automate-your-video-collaboration-with-whereby-mattermost-and-n8n/",
                  "icon": "📹",
                  "label": "The ultimate guide to automate your video collaboration with Whereby, Mattermost, and n8n"
                },
                {
                  "url": "https://n8n.io/blog/how-to-automatically-give-kudos-to-contributors-with-github-slack-and-n8n/",
                  "icon": "👏",
                  "label": "How to automatically give kudos to contributors with GitHub, Slack, and n8n"
                },
                {
                  "url": "https://n8n.io/blog/5-workflow-automations-for-mattermost-that-we-love-at-n8n/",
                  "icon": "🤖",
                  "label": "5 workflow automations for Mattermost that we love at n8n"
                },
                {
                  "url": "https://n8n.io/blog/why-this-product-manager-loves-workflow-automation-with-n8n/",
                  "icon": "🧠",
                  "label": "Why this Product Manager loves workflow automation with n8n"
                },
                {
                  "url": "https://n8n.io/blog/creating-custom-incident-response-workflows-with-n8n/",
                  "label": "How to automate every step of an incident response workflow"
                },
                {
                  "url": "https://n8n.io/blog/learn-to-build-powerful-api-endpoints-using-webhooks/",
                  "icon": "🧰",
                  "label": "Learn to Build Powerful API Endpoints Using Webhooks"
                },
                {
                  "url": "https://n8n.io/blog/learn-how-to-use-webhooks-with-mattermost-slash-commands/",
                  "icon": "🦄",
                  "label": "Learn how to use webhooks with Mattermost slash commands"
                },
                {
                  "url": "https://n8n.io/blog/how-goomer-automated-their-operations-with-over-200-n8n-workflows/",
                  "icon": "🛵",
                  "label": "How Goomer automated their operations with over 200 n8n workflows"
                }
              ],
              "primaryDocumentation": [
                {
                  "url": "https://docs.n8n.io/integrations/builtin/core-nodes/n8n-nodes-base.webhook/"
                }
              ]
            },
            "categories": [
              "Development",
              "Core Nodes"
            ],
            "nodeVersion": "1.0",
            "codexVersion": "1.0",
            "subcategories": {
              "Core Nodes": [
                "Helpers"
              ]
            }
          }
        },
        "group": "[\"trigger\"]",
        "defaults": {
          "name": "Webhook"
        },
        "iconData": {
          "type": "file",
          "fileBuffer": "data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI0OCIgaGVpZ2h0PSI0OCI+PHBhdGggZmlsbD0iIzM3NDc0ZiIgZD0iTTM1IDM3Yy0yLjIgMC00LTEuOC00LTRzMS44LTQgNC00IDQgMS44IDQgNC0xLjggNC00IDQiLz48cGF0aCBmaWxsPSIjMzc0NzRmIiBkPSJNMzUgNDNjLTMgMC01LjktMS40LTcuOC0zLjdsMy4xLTIuNWMxLjEgMS40IDIuOSAyLjMgNC43IDIuMyAzLjMgMCA2LTIuNyA2LTZzLTIuNy02LTYtNmMtMSAwLTIgLjMtMi45LjdsLTEuNyAxTDIzLjMgMTZsMy41LTEuOSA1LjMgOS40YzEtLjMgMi0uNSAzLS41IDUuNSAwIDEwIDQuNSAxMCAxMFM0MC41IDQzIDM1IDQzIi8+PHBhdGggZmlsbD0iIzM3NDc0ZiIgZD0iTTE0IDQzQzguNSA0MyA0IDM4LjUgNCAzM2MwLTQuNiAzLjEtOC41IDcuNS05LjdsMSAzLjlDOS45IDI3LjkgOCAzMC4zIDggMzNjMCAzLjMgMi43IDYgNiA2czYtMi43IDYtNnYtMmgxNXY0SDIzLjhjLS45IDQuNi01IDgtOS44IDgiLz48cGF0aCBmaWxsPSIjZTkxZTYzIiBkPSJNMTQgMzdjLTIuMiAwLTQtMS44LTQtNHMxLjgtNCA0LTQgNCAxLjggNCA0LTEuOCA0LTQgNCIvPjxwYXRoIGZpbGw9IiMzNzQ3NGYiIGQ9Ik0yNSAxOWMtMi4yIDAtNC0xLjgtNC00czEuOC00IDQtNCA0IDEuOCA0IDQtMS44IDQtNCA0Ii8+PHBhdGggZmlsbD0iI2U5MWU2MyIgZD0ibTE1LjcgMzQtMy40LTIgNS45LTkuN2MtMi0xLjktMy4yLTQuNS0zLjItNy4zIDAtNS41IDQuNS0xMCAxMC0xMHMxMCA0LjUgMTAgMTBjMCAuOS0uMSAxLjctLjMgMi41bC0zLjktMWMuMS0uNS4yLTEgLjItMS41IDAtMy4zLTIuNy02LTYtNnMtNiAyLjctNiA2YzAgMi4xIDEuMSA0IDIuOSA1LjFsMS43IDF6Ii8+PC9zdmc+"
        },
        "displayName": "Webhook",
        "typeVersion": 2,
        "nodeCategories": [
          {
            "id": 5,
            "name": "Development"
          },
          {
            "id": 9,
            "name": "Core Nodes"
          }
        ]
      },
      {
        "id": 326,
        "icon": "file:zoho.svg",
        "name": "n8n-nodes-base.zohoCrm",
        "codex": {
          "data": {
            "resources": {
              "generic": [
                {
                  "url": "https://n8n.io/blog/no-code-ecommerce-workflow-automations/",
                  "icon": "store",
                  "label": "6 e-commerce workflows to power up your Shopify s"
                }
              ],
              "primaryDocumentation": [
                {
                  "url": "https://docs.n8n.io/integrations/builtin/app-nodes/n8n-nodes-base.zohocrm/"
                }
              ],
              "credentialDocumentation": [
                {
                  "url": "https://docs.n8n.io/integrations/builtin/credentials/zoho/"
                }
              ]
            },
            "categories": [
              "Communication",
              "Sales"
            ],
            "nodeVersion": "1.0",
            "codexVersion": "1.0"
          }
        },
        "group": "[\"transform\"]",
        "defaults": {
          "name": "Zoho CRM"
        },
        "iconData": {
          "type": "file",
          "fileBuffer": "data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiBmaWxsPSIjZmZmIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiIHN0cm9rZT0iIzAwMCIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIiBzdHJva2UtbGluZWpvaW49InJvdW5kIiB2aWV3Qm94PSIwIC0zMCAxMDAgMTAwIj48dXNlIHhsaW5rOmhyZWY9IiNhIiB4PSIuNSIgeT0iLjUiLz48ZGVmcz48bGluZWFyR3JhZGllbnQgaWQ9ImIiIHgxPSI1MCUiIHgyPSI1MCUiIHkxPSIxLjQzJSIgeTI9Ijk2Ljk4JSI+PHN0b3Agb2Zmc2V0PSIuNTYyJSIgc3RvcC1jb2xvcj0iI2ZmZTUxMyIvPjxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0iI2ZkYjkyNCIvPjwvbGluZWFyR3JhZGllbnQ+PGxpbmVhckdyYWRpZW50IGlkPSJjIiB4MT0iNC41MSUiIHgyPSI5NS42NyUiIHkxPSIxMy40OSUiIHkyPSI4Ny4wNiUiPjxzdG9wIG9mZnNldD0iLjU2MiUiIHN0b3AtY29sb3I9IiMwMDhjZDIiLz48c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiMwMDY0OWQiLz48L2xpbmVhckdyYWRpZW50PjxsaW5lYXJHcmFkaWVudCBpZD0iZCIgeDE9IjUwJSIgeDI9IjUwJSIgeTE9IjI3Ljc4JSIgeTI9Ijk3LjUzJSI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzI2YTE0NiIvPjxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0iIzAwOGE1MiIvPjwvbGluZWFyR3JhZGllbnQ+PGxpbmVhckdyYWRpZW50IGlkPSJlIiB4MT0iNDMuNzMlIiB4Mj0iNTcuNTQlIiB5MT0iOC4yMSUiIHkyPSI5My4yJSI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2Q5MjIzMSIvPjxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0iI2JhMjIzNCIvPjwvbGluZWFyR3JhZGllbnQ+PC9kZWZzPjxzeW1ib2wgaWQ9ImEiIG92ZXJmbG93PSJ2aXNpYmxlIj48ZyBmaWxsLXJ1bGU9Im5vbnplcm8iIHN0cm9rZT0ibm9uZSI+PHBhdGggZmlsbD0iI2U3OTIyNSIgZD0iTTEwMi45NjQgNy41ODF2MjQuNDE0bC0zLjM3OSAzLjI5OFYxMS40MDJ6Ii8+PHBhdGggZmlsbD0iI2ZmZjE2ZCIgZD0ibTgwLjgyMiA3LjYwMS0zLjQ5OSAzLjgwMS4xODEuMjQxIDIxLjk0LS4wOC4yMDEtLjE2MSAzLjMxOC0zLjgyMXoiLz48cGF0aCBmaWxsPSJ1cmwoI2IpIiBkPSJNNzcuMzIzIDExLjQwMmgyMi4zMjJ2MjMuOTExSDc3LjMyM3oiLz48cGF0aCBkPSJNOTYuMjQ2IDIwLjAwOWE4LjggOC44IDAgMCAwLTEuOTcxLTIuOTc2Yy0uODI1LS44NDUtMS43NDktMS40ODgtMi43OTUtMS45MS0xLjAyNi0uNDIyLTIuMTMyLS42NDMtMy4zMzgtLjY0M3MtMi4zMzMuMjIxLTMuMzU4LjY0M2MtMS4wNDYuNDIyLTEuOTcxIDEuMDY2LTIuNzk1IDEuOTEtLjg2NS44NjUtMS41MDggMS44Ny0xLjk1MSAyLjk3NnMtLjY0NCAyLjMxMy0uNjQ0IDMuNjRhOS44IDkuOCAwIDAgMCAuNjY0IDMuNjIgOC45NSA4Ljk1IDAgMCAwIDEuOTUxIDMuMDE3Yy44MDQuODI1IDEuNzMgMS40NDggMi43NTUgMS44N3MyLjE3Mi42NDQgMy4zOTkuNjQ0YzEuMTg2IDAgMi4yOTMtLjIyMSAzLjMxOC0uNjQ0czEuOTcxLTEuMDQ2IDIuNzk1LTEuODdjLjg2NS0uODg1IDEuNTI4LTEuODkgMS45NzEtMi45OTZzLjY2NC0yLjMzMy42NjQtMy42MmMwLTEuMzQ3LS4yMjEtMi41NTQtLjY2NC0zLjY2em0tNC42MDUgNy44ODNjLS44NjUgMS4wMjYtMi4wMTEgMS41NDktMy40OTkgMS41NDlzLTIuNjU1LS41MjMtMy41MTktMS41NDktMS4yODctMi40NTMtMS4yODctNC4yNjNjMC0xLjg1LjQ0Mi0zLjI3OCAxLjI4Ny00LjMyNC44NjUtMS4wNDYgMi4wMTEtMS41NDkgMy41MTktMS41NDkgMS40ODggMCAyLjYzNC41MjMgMy40OTkgMS41NDkuODQ1IDEuMDQ2IDEuMjg3IDIuNDc0IDEuMjg3IDQuMzI0IDAgMS44MS0uNDIyIDMuMjM4LTEuMjg3IDQuMjYzIi8+PHBhdGggZmlsbD0iIzAwOWFkYSIgZD0iTTc1LjEzMSA1LjU5MXYuMTIxbDIuODU2IDIxLjk0LTEuNjY5IDQuNjI1LS4yMjEtLjE2MS0yLjkzNi0yMS4wMzUuMDYtLjI4MSAxLjgzLTUuMDg4eiIvPjxwYXRoIGZpbGw9IiM5MWM5ZWQiIGQ9Im01My4xNTEgOC42NDggMjEuOTgtMy4wNTctMS44NSA1LjI2OS0uMjYxLjI4Mi0yMC41NTIgMy4wMTcuMTAxLTMuNzYxeiIvPjxwYXRoIGZpbGw9InVybCgjYykiIGQ9Im03My4yODEgMTAuODU5IDMuMDM3IDIxLjQxNy0yMS42NTkgMy4wMzctMi45MTYtMjAuNjkzIDEuMjY3LS45ODV6Ii8+PHBhdGggZD0iTTY5LjYwMSAxNC45NjJjLS4xMDEtLjY2NC0uMzIyLTEuMTY2LS42ODQtMS41MDhhMS42IDEuNiAwIDAgMC0xLjA4Ni0uNDAyYy0uMSAwLS4yMjEgMC0uMzQyLjAyLS41NjMuMDgxLS45ODUuMzQyLTEuMjQ3Ljc2NC0uMjAxLjMwMi0uMjgxLjY4NC0uMjgxIDEuMTI2IDAgLjE2MS4wMi4zNDIuMDQuNTIzbC43ODQgNS41Ny02LjIzNC45MjUtLjc4NC01LjU3Yy0uMS0uNjQ0LS4zMjItMS4xNDYtLjY4NC0xLjQ4OGExLjUyIDEuNTIgMCAwIDAtMS4wNjYtLjQyMmMtLjEwMSAwLS4yMDEgMC0uMzAyLjAyLS41ODMuMDgxLTEuMDI2LjM0Mi0xLjMwNy43NjQtLjIwMS4zMDItLjI4Mi42ODQtLjI4MiAxLjEyNiAwIC4xNjEuMDIuMzQyLjA0LjU0M2wyLjEzMiAxNC40OTljLjEuNjY0LjMyMiAxLjE2Ni43MjQgMS41MDguMzAyLjI2MS42NjQuMzgyIDEuMTA2LjM4Mi4xMjEgMCAuMjQxIDAgLjM2Mi0uMDIuNTQzLS4wODEuOTQ1LS4zNDIgMS4yMDctLjc2NC4xODEtLjMwMi4yNjEtLjY2NC4yNjEtMS4wODYgMC0uMTYxLS4wMi0uMzQyLS4wNC0uNTIzbC0uODY1LTUuNzMxIDYuMjM0LS45MjUuODY1IDUuNzMxYy4xLjY2NC4zMjIgMS4xNjYuNzA0IDEuNDg4YTEuNiAxLjYgMCAwIDAgMS4wODYuNDAyYy4xMDEgMCAuMjIxIDAgLjM0Mi0uMDIuNTYzLS4wODEuOTg1LS4zNDIgMS4yNDctLjc2NC4xODEtLjMwMi4yODItLjY2NC4yODItMS4xMDYgMC0uMTYxLS4wMi0uMzQyLS4wNC0uNTIzeiIvPjxwYXRoIGZpbGw9IiM2NmJmNmIiIGQ9Im0zMi41NzggMC03LjgyMyAxOC41ODIgMS4wNjYgOC4xNjUuMDYtLjAyIDguNzg4LTE5Ljc2OC0uMDQtLjQyMi0xLjg5LTYuMjc0eiIvPjxwYXRoIGZpbGw9IiM5OGQwYTAiIGQ9Im0zMi41NzggMCAyLjA3MSA2Ljk1OCAxOS4zNDYgOC42NjcuMDYtLjA0LTEuNjQ5LTYuNTE2eiIvPjxwYXRoIGZpbGw9InVybCgjZCkiIGQ9Im0zNC42MDkgNi44MTcgMTkuNDQ2IDguNzY4LTguNzg4IDE5LjkyOS0xOS40NDYtOC43Njh6Ii8+PHBhdGggZD0iTTQ4LjE2NCAxNy4xOTRjLS40MjItMS4xMjYtMS4wMDUtMi4wOTEtMS43Ny0yLjg5NmE4LjIgOC4yIDAgMCAwLTIuNzc1LTEuOTExIDguMyA4LjMgMCAwIDAtMy4yNzgtLjY4NGgtLjA2Yy0xLjEyNiAwLTIuMjMyLjI2MS0zLjMxOC43NDRhOC45IDguOSAwIDAgMC0yLjk3NiAyLjA5MWMtLjg0NS44ODUtMS41MjggMS45NzEtMi4wNTEgMy4yMThhMTAuOCAxMC44IDAgMCAwLS44NjUgMy43di40MjJhOS4yIDkuMiAwIDAgMCAuNTYzIDMuMTk3Yy40MDIgMS4xMDYuOTg1IDIuMDUxIDEuNzUgMi44NTZzMS43MDkgMS40NDggMi44MzYgMS45MWE4LjEgOC4xIDAgMCAwIDMuMjU4LjY4NGguMDJjMS4xMDYgMCAyLjIxMi0uMjQxIDMuMjk4LS43MDRhOSA5IDAgMCAwIDIuOTk2LTIuMTExYy44NDUtLjg4NSAxLjU0OC0xLjk1MSAyLjA3MS0zLjE5OHMuODA0LTIuNDc0Ljg2NS0zLjd2LS4zNjJhOC43IDguNyAwIDAgMC0uNTYzLTMuMjU4em0tMy44ODEgNS43OTJjLS43MjQgMS43My0xLjcwOSAyLjkxNi0yLjg5NiAzLjU2LS42NDQuMzQyLTEuMzA3LjUyMy0xLjk3MS41MjMtLjU4MyAwLTEuMjA2LS4xNDEtMS44My0uNDAyLTEuMzY3LS41ODMtMi4yMTItMS41MDgtMi41NzQtMi44MzVhNS4zIDUuMyAwIDAgMS0uMTgxLTEuMzg4YzAtLjk2NS4yNDEtMi4wMzEuNzI0LTMuMTc3Ljc0NC0xLjc3IDEuNzMtMi45NzYgMi45MTYtMy42NGEzLjk3IDMuOTcgMCAwIDEgMS45NzEtLjUyM2MuNjAzIDAgMS4yMDcuMTQxIDEuODUuNDAyIDEuMzQ3LjU4MyAyLjE5MiAxLjUwOCAyLjU1NCAyLjgzNS4xMjEuNDIyLjE4MS44ODUuMTgxIDEuMzY3IDAgMS4wMDYtLjI0MSAyLjA5MS0uNzQ0IDMuMjc4Ii8+PHBhdGggZmlsbD0iIzc2MGQxNiIgZD0ibTIzLjIwNyAzLjE1NyAzLjE3NyAyMS4yNzYtMS40NDggNy40ODEtLjIwMS0uMjYxLTMuMDk3LTIwLjU1MnYtLjQwMmwxLjM2Ny03LjE3OXoiLz48cGF0aCBmaWxsPSIjZWY0NjNlIiBkPSJtMCAxNC4xNTcgMS41MDgtNy41MjEgMjEuNjk5LTMuNDc5LTEuNDY4IDcuNjYydi41MDNMLjI2MSAxNC4zNTh6Ii8+PHBhdGggZmlsbD0idXJsKCNlKSIgZD0ibTIxLjczOSAxMC44MTkgMy4xOTcgMjEuMDk1LTIxLjQ3NyAzLjM1OEwwIDE0LjE1N3oiLz48cGF0aCBkPSJNMTkuNDI3IDI4LjU1NmMtLjE2MS0uMjAxLS40MDItLjM0Mi0uNjg0LS40NDJzLS42MjMtLjE0MS0xLjA0Ni0uMTQxYy0uMzgyIDAtLjgyNC4wNC0xLjMwNy4xMjFsLTUuNjcxLjk2NWMuMDYtLjQ0My4yODItMS4wMDYuNjY0LTEuNzA5LjQyMi0uNzg0IDEuMDY2LTEuNzMgMS44OS0yLjgxNWwuNjY0LS44NjUuNDYzLS41ODNjMS4zMDctMS43MDkgMi4wOTEtMy4wOTcgMi40MTMtNC4xODNhOC43IDguNyAwIDAgMCAuMzIyLTEuODdjLjAyLS4xODEuMDItLjM0Mi4wMi0uNTAzYTcuNCA3LjQgMCAwIDAtLjEyMS0xLjMyN2MtLjA2LS40MDItLjE2MS0uNzI0LS4zMDItLjk4NXMtLjMwMi0uNDYzLS41MDMtLjU4M2MtLjIyMS0uMTQxLS41NjMtLjIwMS0uOTg1LS4yMDFxLS41MTMgMC0xLjI2Ny4xMjFMNy40MjEgMTQuNjhjLS43ODQuMTQxLTEuMzg4LjM2Mi0xLjc1LjcyNGExLjM4IDEuMzggMCAwIDAtLjQ0MiAxLjA0NiAyIDIgMCAwIDAgLjAyLjM0MmMuMTAxLjU2My4zODIuOTY1Ljg0NSAxLjE2Ni4yODIuMTIxLjYwMy4xODEgMS4wMDUuMTgxLjI2MSAwIC41NjMtLjAyLjg4NS0uMDhsNS40Ny0uOTY1YzAgLjEwMS4wMi4yMDEuMDIuMjgyYTIuOSAyLjkgMCAwIDEtLjE4MSAxLjAwNWMtLjE2MS40NjMtLjU2MyAxLjEwNi0xLjIyNyAxLjkzMWwtLjg0NSAxLjA0NmMtMS40ODggMS43OS0yLjUzNCAzLjMxOC0zLjE3NyA0LjU4NWExMCAxMCAwIDAgMC0uOTQ1IDIuNTk0IDcuMiA3LjIgMCAwIDAtLjE2MSAxLjQyOGMwIC4zMjIuMDIuNjQzLjA4MS45NDUuMDguNDQyLjE4MS44MDQuMzIyIDEuMDg2cy4zNDIuNTAzLjU2My42MjMuNTIzLjE2MS45NjUuMTYxcS44MTQgMCAyLjIzMi0uMjQxbDUuOTUzLTEuMDI2YzEuMDQ2LS4xODEgMS43OS0uNDQyIDIuMjEyLS43ODRhMS4zOSAxLjM5IDAgMCAwIC41MjMtMS4xMDZjMC0uMTIxLS4wMi0uMjQxLS4wNC0uMzYyYTEuMzMgMS4zMyAwIDAgMC0uMzIyLS43MDR6Ii8+PC9nPjwvc3ltYm9sPjwvc3ZnPg=="
        },
        "displayName": "Zoho CRM",
        "typeVersion": 1,
        "nodeCategories": [
          {
            "id": 2,
            "name": "Sales"
          },
          {
            "id": 6,
            "name": "Communication"
          }
        ]
      },
      {
        "id": 565,
        "icon": "fa:sticky-note",
        "name": "n8n-nodes-base.stickyNote",
        "codex": {
          "data": {
            "alias": [
              "Comments",
              "Notes",
              "Sticky"
            ],
            "categories": [
              "Core Nodes"
            ],
            "nodeVersion": "1.0",
            "codexVersion": "1.0",
            "subcategories": {
              "Core Nodes": [
                "Helpers"
              ]
            }
          }
        },
        "group": "[\"input\"]",
        "defaults": {
          "name": "Sticky Note",
          "color": "#FFD233"
        },
        "iconData": {
          "icon": "sticky-note",
          "type": "icon"
        },
        "displayName": "Sticky Note",
        "typeVersion": 1,
        "nodeCategories": [
          {
            "id": 9,
            "name": "Core Nodes"
          }
        ]
      }
    ],
    "categories": [
      {
        "id": 39,
        "name": "CRM"
      }
    ],
    "image": []
  }
}