{"workflow":{"id":13831,"name":"Match Zoho CRM contacts to buyer personas using LinkedIn, Phantombuster and OpenAI","views":69,"recentViews":1,"totalViews":69,"createdAt":"2026-03-03T11:22:17.354Z","description":"# Zoho CRM - Buyer Persona Matcher\n\nThis workflow automates the process of identifying buyer personas and generating personalized sales outreach. It triggers via a **Zoho CRM Webhook** when a deal is updated, enriches the contact data by **scraping LinkedIn profiles** using **Phantombuster** and uses **OpenAI** to match the contact against a defined **Persona Database**. The final analysis, including a tailored outreach message and confidence score, is synced back to the **Zoho CRM** contact record.\n\n\n### Quick Implementation Steps\n\n1.  Set the `phantombusterAgentId` and `personaMatchThreshold` in the **Workflow Configuration** node.\n2.  Configure your **Zoho CRM Webhook** to trigger on \"Potentials\" (Deals) updates.\n3.  Connect your **Phantombuster API** credential to the **Scrape LinkedIn Profile** node.\n4.  Connect your **OpenAI API** credential to the **OpenAI Chat Model** node.\n5.  Connect your **Zoho CRM OAuth2** credential to the CRM nodes.\n\n\n## What It Does\n\nThis workflow transforms raw CRM data into actionable sales intelligence. When a deal is identified, it retrieves the contact's LinkedIn URL and uses an external scraper to gather real-time professional data (title, experience and skills).\n\nThe AI-driven core compares this live data against a structured database of target personas (e.g., Executive Decision Maker, Technical Evaluator) to:\n\n1.  Assign a specific **Buyer Persona** to the contact.\n2.  Calculate a **Confidence Score (0-1)** for the match.\n3.  Generate a **Personalized Outreach Message** and specific **Talking Points** based on the contact's background.\n\nThe results are automatically written back to the Zoho CRM Contact description, providing sales reps with an immediate strategy for engagement.\n\n\n## Who’s It For\n\n* **Sales Development Representatives (SDRs)** wanting to automate the research phase of outbound prospecting.\n* **Account Executives (AEs)** looking for personalized talking points tailored to the specific seniority and role of their prospects.\n* **Revenue Operations (RevOps)** teams aiming to standardize persona data within the CRM based on objective professional data.\n\n\n## Requirements to Use This Workflow\n\n* A running n8n instance (self-hosted or cloud).\n* **Zoho CRM** account with \"Potentials\" (Deals) and \"Contacts\" modules.\n* **Phantombuster** account and a configured LinkedIn Profile Scraper agent.\n* **OpenAI** account (API key) for the persona matching agent.\n\n\n## How It Works & How To Set Up\n\n### Step 1: Configure Trigger and Global Variables\n\n1.  **Zoho CRM Webhook:** Setup a workflow rule in Zoho CRM to trigger this webhook when a deal is updated or created.\n2.  **Workflow Configuration:** Open this node and set your parameters:\n    * `phantombusterAgentId`: Your specific Phantombuster scraper ID.\n    * `personaMatchThreshold`: The minimum score (e.g., `0.7`) required to accept an AI persona match.\n\n### Step 2: External Enrichment Setup\n\n1.  **Extract Contact Data:** This node pulls the LinkedIn URL from the Zoho \"Next Step\" or custom field. Ensure your Zoho deal records contain valid LinkedIn URLs.\n2.  **Scrape LinkedIn Profile:** Connect your Phantombuster credentials to allow the workflow to fetch live professional details.\n\n### Step 3: Define Your Personas\n\n1.  **Persona Database:** Modify the JSON in this node to reflect your company's specific target buyer personas, including their characteristics and typical communication styles.\n2.  **OpenAI Chat Model:** Connect your **OpenAI API** credential. It uses `gpt-4o-mini` by default for analysis.\n\n### Step 4: CRM Synchronization\n\n1.  **Update Zoho CRM Contact:** This node pushes the AI's findings (Persona, Style, Talking Points) into the CRM.\n2.  Ensure the `contactId` mapping matches your Zoho environment.\n\n\n## How To Customize Nodes\n\n### Expand Persona Profiles\n\nUpdate the **Persona Database** node to include more niche roles or industry-specific traits to improve the AI's matching accuracy.\n\n### Adjust Outreach Tone\n\nModify the \"System Message\" in the **Persona Matcher & Outreach Generator** to change the tone of the generated messages (e.g., making them more formal or more casual).\n\n### Custom Field Mapping\n\nChange the **Update Zoho CRM Contact** node to map the persona data into custom CRM fields instead of the default \"Description\" field for better reporting.\n\n\n## Troubleshooting Guide\n\n| Issue | Possible Cause | Solution |\n| :--- | :--- | :--- |\n| **No LinkedIn Data** | LinkedIn URL missing or invalid format. | Ensure the Zoho field used for the URL contains a full `https://linkedin.com/in/...` link. |\n| **Phantombuster Error** | Agent ID is incorrect or API credits exhausted. | Verify the `phantombusterAgentId` in **Workflow Configuration** and check your Phantombuster dashboard. |\n| **Low Confidence Scores** | LinkedIn profile is too sparse or private. | The AI may need more data; ensure the scraper is successfully pulling the \"About\" and \"Experience\" sections. |\n| **CRM Update Failing** | OAuth2 connection expired. | Re-authenticate your **Zoho CRM OAuth2** credentials in n8n. |\n\n\n## Need Help?\n\nIf you need help tailoring the AI persona matching logic, integrating additional data scrapers or mapping these insights into specific CRM dashboards, please reach out to our [n8n workflow developers](https://www.weblineindia.com/hire-n8n-developers/) at WeblineIndia. We can help you scale your personalized outreach and increase your conversion rates.","workflow":{"id":"86AlA0p2E5X4GcgN","meta":{"instanceId":"14e4c77104722ab186539dfea5182e419aecc83d85963fe13f6de862c875ebfa","templateCredsSetupCompleted":true},"name":"Zoho CRM - Buyer Persona Matcher","tags":[],"nodes":[{"id":"2f8a925b-780c-4d01-a347-e7621d177b1f","name":"Workflow Configuration","type":"n8n-nodes-base.set","position":[-1632,80],"parameters":{"options":{},"assignments":{"assignments":[{"id":"id-1","name":"phantombusterAgentId","type":"string","value":"6534253830618372"},{"id":"id-2","name":"personaMatchThreshold","type":"number","value":0.7}]},"includeOtherFields":true},"typeVersion":3.4},{"id":"890390aa-2a2f-45af-bf25-83eb3b2478a0","name":"Extract Contact Data","type":"n8n-nodes-base.set","position":[-864,80],"parameters":{"options":{},"assignments":{"assignments":[{"id":"id-1","name":"contactName","type":"string","value":"={{ $json.Contact_Name.name }}"},{"id":"id-2","name":"contactEmail","type":"string","value":"={{ $json.Contact_Name.email || $('Workflow Configuration').first().json.body.contact_email }}"},{"id":"id-3","name":"linkedInUrl","type":"string","value":"={{ $json.Next_Step }}"},{"id":"id-4","name":"dealId","type":"string","value":"={{ $json.id }}"},{"id":"id-5","name":"dealName","type":"string","value":"={{ $json.Deal_Name }}"},{"id":"id-6","name":"dealAmount","type":"number","value":"={{ $json.Amount }}"}]}},"typeVersion":3.4},{"id":"f6424b8f-d47f-40f5-bc95-8cbbd7b83bb5","name":"Scrape LinkedIn Profile","type":"n8n-nodes-base.phantombuster","position":[-240,80],"parameters":{"agentId":"6534253830618372","additionalFields":{}},"credentials":{"phantombusterApi":{"id":"aTwehZWlds0yKvgt","name":"Phantombuster account 3"}},"typeVersion":1},{"id":"c97d6918-ae23-488f-b379-65643e62d7a1","name":"Persona Database","type":"n8n-nodes-base.set","position":[0,80],"parameters":{"options":{},"assignments":{"assignments":[{"id":"id-1","name":"personas","type":"array","value":"[{\"id\": \"executive_decision_maker\", \"name\": \"Executive Decision Maker\", \"characteristics\": [\"C-level or VP title\", \"10+ years experience\", \"Strategic focus\", \"Budget authority\"], \"communication_style\": \"Direct and results-oriented. Focus on ROI and strategic impact.\", \"talking_points\": [\"Bottom-line impact\", \"Competitive advantage\", \"Long-term strategic value\", \"Risk mitigation\"]}, {\"id\": \"technical_evaluator\", \"name\": \"Technical Evaluator\", \"characteristics\": [\"Engineering or technical role\", \"Hands-on experience\", \"Detail-oriented\", \"Integration concerns\"], \"communication_style\": \"Technical and detailed. Provide specifications and implementation details.\", \"talking_points\": [\"Technical architecture\", \"Integration capabilities\", \"Security features\", \"Scalability and performance\"]}, {\"id\": \"business_analyst\", \"name\": \"Business Analyst\", \"characteristics\": [\"Operations or business role\", \"Process-focused\", \"Data-driven\", \"Efficiency-minded\"], \"communication_style\": \"Process-oriented and analytical. Show workflows and efficiency gains.\", \"talking_points\": [\"Process optimization\", \"Efficiency metrics\", \"Workflow automation\", \"Time savings\"]}]"}]},"includeOtherFields":true},"typeVersion":3.4},{"id":"52b6d060-ee88-41a7-a198-b36d67fe7003","name":"Persona Matcher & Outreach Generator","type":"@n8n/n8n-nodes-langchain.agent","position":[624,80],"parameters":{"text":"=LinkedIn Profile Data: {{ JSON.stringify($json) }}\n\nContact Information:\n- Name: {{ $('Extract Contact Data').first().json.contactName }}\n- Email: {{ $('Extract Contact Data').first().json.contactEmail }}\n- Deal: {{ $('Extract Contact Data').first().json.dealName }} (${{ $('Extract Contact Data').first().json.dealAmount }})\n\nAvailable Personas: {{ JSON.stringify($('Persona Database').first().json.personas) }}","options":{"systemMessage":"You are an expert sales intelligence analyst specializing in buyer persona matching and personalized outreach strategy.\n\nYour task is to:\n1. Analyze the LinkedIn profile data provided (job title, experience, skills, company, industry)\n2. Match the contact to the most appropriate buyer persona from the available personas\n3. Calculate a confidence score (0-1) for the persona match\n4. Suggest a personalized communication style based on the persona\n5. Recommend 3-5 specific talking points tailored to this contact\n6. Generate a personalized outreach message (2-3 paragraphs)\n\nBe specific and reference actual details from the LinkedIn profile in your recommendations. Focus on what will resonate with this particular individual based on their role, experience and background."},"promptType":"define","hasOutputParser":true},"typeVersion":3},{"id":"1bcf9b9b-4cdb-4979-9365-b50282ce4140","name":"Structured Output Parser","type":"@n8n/n8n-nodes-langchain.outputParserStructured","position":[800,272],"parameters":{"jsonSchemaExample":"{\n\t\"matched_persona_id\": \"executive_decision_maker\",\n\t\"matched_persona_name\": \"Executive Decision Maker\",\n\t\"confidence_score\": 0.85,\n\t\"reasoning\": \"Contact has VP title with 12 years experience and strategic focus\",\n\t\"communication_style\": \"Direct, results-focused, emphasize ROI and strategic impact\",\n\t\"recommended_talking_points\": [\"Revenue growth potential\", \"Competitive market positioning\", \"Strategic partnership value\"],\n\t\"personalized_outreach\": \"Hi [Name], I noticed your impressive track record in driving strategic initiatives at [Company]...\"\n}"},"typeVersion":1.3},{"id":"2aae41f8-3e37-4014-a3bd-99ad77ec7152","name":"Update Zoho CRM Contact","type":"n8n-nodes-base.zohoCrm","position":[1072,80],"parameters":{"resource":"contact","contactId":"={{ $('Get Deal Record').first().json.Contact_Name.id }}","operation":"update","updateFields":{"Description":"={{ 'Persona: ' + $json.output.matched_persona_name + ' | Confidence: ' + $json.output.confidence_score + ' | Style: ' + $json.output.communication_style + ' | Talking Points: ' + $json.output.recommended_talking_points.join(', ') + ' | Outreach: ' + $json.output.personalized_outreach }}"}},"credentials":{"zohoOAuth2Api":{"id":"LY66IfPevKWJUYNY","name":"Zoho account 9"}},"typeVersion":1},{"id":"20e65d4b-1098-41d7-b149-cc33f291211f","name":"Zoho CRM Webhook","type":"n8n-nodes-base.webhook","position":[-1872,80],"webhookId":"43f8ce89-11ab-4b6a-903e-92b9e741b1cd","parameters":{"path":"zoho-crm-contact-deal","options":{},"httpMethod":"POST"},"typeVersion":2.1},{"id":"6e0ac3af-52dd-4fd0-a5a6-05e718588f4a","name":"OpenAI Chat Model","type":"@n8n/n8n-nodes-langchain.lmChatOpenAi","position":[608,272],"parameters":{"model":{"__rl":true,"mode":"list","value":"gpt-4.1-mini"},"options":{}},"credentials":{"openAiApi":{"id":"yHhrOVnDCqtcJpPu","name":"OpenAi account 32"}},"typeVersion":1.2},{"id":"fee7ace1-4e04-4f3f-a7b1-1c15d4e8b066","name":"Get Deal Record","type":"n8n-nodes-base.zohoCrm","position":[-1056,80],"parameters":{"dealId":"={{ $json.body.deal_id }}","resource":"deal","operation":"get"},"credentials":{"zohoOAuth2Api":{"id":"LY66IfPevKWJUYNY","name":"Zoho account 9"}},"typeVersion":1,"alwaysOutputData":true},{"id":"3deef7f5-3ab4-4715-9810-fc966df66fcd","name":"Sticky Note10","type":"n8n-nodes-base.stickyNote","position":[-2672,-256],"parameters":{"width":496,"height":688,"content":"# How It Works\n### This workflow automates buyer persona identification by enriching Zoho CRM deal data with real-time LinkedIn professional insights to generate tailored sales outreach strategies.\n# Setup Steps\n## Trigger\nConfigure a Zoho CRM Webhook to send data when a new \"Potential\" (Deal) is created or updated with a LinkedIn URL.\n\n## Connections\nLink credentials for Zoho CRM (data), Phantombuster (scraping) and OpenAI (persona analysis).\n\n## Configuration\nDefine your persona match threshold and Phantombuster Agent ID in the configuration node to control automation sensitivity.\n\n## Intelligence Sync\nThe system automatically updates the Contact record in Zoho CRM with the identified persona, confidence score and a draft outreach message."},"typeVersion":1},{"id":"035744f1-a817-4c25-98c0-37695960e9ad","name":"Sticky Note3","type":"n8n-nodes-base.stickyNote","position":[-2048,-128],"parameters":{"color":7,"width":720,"height":496,"content":"## Webhook Trigger & Set Configuration\nThe process begins with a Webhook Trigger listening for deal updates in Zoho CRM. This is followed by a Workflow Configuration node that establishes operational parameters, such as the scraping agent ID and the minimum confidence threshold required to validate a buyer persona match.\n"},"typeVersion":1},{"id":"38c26d9a-f10c-4198-b18c-f48df05dc6ef","name":"Sticky Note","type":"n8n-nodes-base.stickyNote","position":[-1280,-128],"parameters":{"color":7,"width":736,"height":496,"content":"## CRM Data Retrieval and Field Mapping\nThis segment retrieves the full record details from Zoho CRM based on the webhook payload. It then maps specific fields—including contact names, emails and LinkedIn URLs—into a structured format for the scraping and AI analysis stages.\n"},"typeVersion":1},{"id":"476bf0fb-068b-4ccf-a170-5e8ae6ee5cec","name":"Sticky Note4","type":"n8n-nodes-base.stickyNote","position":[-480,-128],"parameters":{"color":7,"width":768,"height":496,"content":"## Profile Scraping and Persona Reference\nThis section uses a Phantombuster integration to scrape professional data from LinkedIn, providing the AI with real-time context on job titles and experience. It simultaneously references a Persona Database node that stores standardized buyer profiles (e.g., Executive, Technical) for comparison.\n"},"typeVersion":1},{"id":"55f3b588-bea2-40b7-8d5d-722571ed5f8d","name":"Sticky Note5","type":"n8n-nodes-base.stickyNote","position":[384,-128],"parameters":{"color":7,"width":928,"height":560,"content":"## AI-Driven Matching and CRM Synchronization\nThe final stage uses an AI Agent to compare LinkedIn data against the persona database. It calculates a match score and generates specific talking points. These insights, along with a personalized outreach draft, are then automatically synced back to the Zoho CRM contact record."},"typeVersion":1}],"active":false,"pinData":{"Zoho CRM Webhook":[{"json":{"body":{"amount":"1000","deal_id":"6936920000001317045","deal_name":"Linkedin analysis","Deal Owner":"Worktualize Developer","Description":"for linkedin profile scraping","LinkedIn_URL":"${Deals.LinkedIn_URL}","contact_name":"${Deals.Contact_Name.Full_Name}","contact_email":"${Deals.Contact_Name.Email}"},"query":{},"params":{},"headers":{"host":"localhost.app.n8n.cloud","cf-ray":"9b38aab7d321e668-SEA","module":"Potentials","cdn-loop":"cloudflare; loops=1; subreqs=1","cf-ew-via":"15","cf-worker":"n8n.cloud","x-real-ip":"136.143.177.62","cf-visitor":"{\"scheme\":\"https\"}","user-agent":"https://crm.zoho.com","cf-ipcountry":"US","content-type":"application/x-www-form-urlencoded;charset=UTF-8","x-is-trusted":"yes","content-length":"282","accept-encoding":"gzip, br","x-forwarded-for":"136.143.177.62, 108.162.245.212","cf-connecting-ip":"136.143.177.62","x-forwarded-host":"localhost.app.n8n.cloud","x-forwarded-port":"443","automationcounter":"0","x-forwarded-proto":"https","x-forwarded-server":"traefik-prod-users-gwc-75-7cf7798779-p9t9g","x-zoho-crm-feature":"webhook","zsec_user_import_url":"true","isbulkautomationtopic":"false","x-zoho-service-details":"{\"automationCounter\":\"0\",\"x-zoho-crm-feature\":\"webhook\",\"module\":\"Potentials\",\"isBulkAutomationTopic\":\"false\"}"},"webhookUrl":"https://localhost.app.n8n.cloud/webhook/zoho-crm-contact-deal","executionMode":"production"}}]},"settings":{"executionOrder":"v1"},"versionId":"6be06ec7-a8e7-4b92-b6c7-e5e4edc1e767","connections":{"Get Deal Record":{"main":[[{"node":"Extract Contact Data","type":"main","index":0}]]},"Persona Database":{"main":[[{"node":"Persona Matcher & Outreach Generator","type":"main","index":0}]]},"Zoho CRM Webhook":{"main":[[{"node":"Workflow Configuration","type":"main","index":0}]]},"OpenAI Chat Model":{"ai_languageModel":[[{"node":"Persona Matcher & Outreach Generator","type":"ai_languageModel","index":0}]]},"Extract Contact Data":{"main":[[{"node":"Scrape LinkedIn Profile","type":"main","index":0}]]},"Workflow Configuration":{"main":[[{"node":"Get Deal Record","type":"main","index":0}]]},"Scrape LinkedIn Profile":{"main":[[{"node":"Persona Database","type":"main","index":0}]]},"Structured Output Parser":{"ai_outputParser":[[{"node":"Persona Matcher & Outreach Generator","type":"ai_outputParser","index":0}]]},"Persona Matcher & Outreach Generator":{"main":[[{"node":"Update Zoho CRM Contact","type":"main","index":0}]]}}},"lastUpdatedBy":1,"workflowInfo":{"nodeCount":15,"nodeTypes":{"n8n-nodes-base.set":{"count":3},"n8n-nodes-base.webhook":{"count":1},"n8n-nodes-base.zohoCrm":{"count":2},"n8n-nodes-base.stickyNote":{"count":5},"n8n-nodes-base.phantombuster":{"count":1},"@n8n/n8n-nodes-langchain.agent":{"count":1},"@n8n/n8n-nodes-langchain.lmChatOpenAi":{"count":1},"@n8n/n8n-nodes-langchain.outputParserStructured":{"count":1}}},"status":"published","readyToDemo":null,"user":{"name":"WeblineIndia","username":"weblineindia","bio":"A Leading Software Engineering, Consulting & Outsourcing Services Company in USA & India serving Clients Globally since 1999.","verified":true,"links":["https://www.weblineindia.com/hire-n8n-developers/"],"avatar":"https://gravatar.com/avatar/a229d43aefca4588581583c58bb37b4773aebbdf4c1fef86a08bb1d38eae91fa?r=pg&d=retro&size=200"},"nodes":[{"id":38,"icon":"fa:pen","name":"n8n-nodes-base.set","codex":{"data":{"alias":["Set","JS","JSON","Filter","Transform","Map"],"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/automatically-pulling-and-visualizing-data-with-n8n/","icon":"📈","label":"Automatically pulling and visualizing data with n8n"},{"url":"https://n8n.io/blog/database-monitoring-and-alerting-with-n8n/","icon":"📡","label":"Database Monitoring and Alerting with n8n"},{"url":"https://n8n.io/blog/automatically-adding-expense-receipts-to-google-sheets-with-telegram-mindee-twilio-and-n8n/","icon":"🧾","label":"Automatically Adding Expense Receipts to Google Sheets with Telegram, Mindee, Twilio, and n8n"},{"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/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/building-an-expense-tracking-app-in-10-minutes/","icon":"📱","label":"Building an expense tracking app in 10 minutes"},{"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/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/learn-to-build-powerful-api-endpoints-using-webhooks/","icon":"🧰","label":"Learn to Build Powerful API Endpoints Using Webhooks"},{"url":"https://n8n.io/blog/how-a-membership-development-manager-automates-his-work-and-investments/","icon":"📈","label":"How a Membership Development Manager automates his work and investments"},{"url":"https://n8n.io/blog/a-low-code-bitcoin-ticker-built-with-questdb-and-n8n-io/","icon":"📈","label":"A low-code bitcoin ticker built with QuestDB and n8n.io"},{"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/how-goomer-automated-their-operations-with-over-200-n8n-workflows/","icon":"🛵","label":"How Goomer automated their operations with over 200 n8n workflows"},{"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.set/"}]},"categories":["Core Nodes"],"nodeVersion":"1.0","codexVersion":"1.0","subcategories":{"Core Nodes":["Data Transformation"]}}},"group":"[\"input\"]","defaults":{"name":"Edit Fields"},"iconData":{"icon":"pen","type":"icon"},"displayName":"Edit Fields (Set)","typeVersion":3,"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":436,"icon":"file:phantombuster.png","name":"n8n-nodes-base.phantombuster","codex":{"data":{"resources":{"primaryDocumentation":[{"url":"https://docs.n8n.io/integrations/builtin/app-nodes/n8n-nodes-base.phantombuster/"}],"credentialDocumentation":[{"url":"https://docs.n8n.io/integrations/builtin/credentials/phantombuster/"}]},"categories":["Sales","Marketing"],"nodeVersion":"1.0","codexVersion":"1.0"}},"group":"[\"input\"]","defaults":{"name":"Phantombuster"},"iconData":{"type":"file","fileBuffer":"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADwAAAA8CAMAAAANIilAAAAAllBMVEU1wtv////9/v8Avdg8w9w/w9z2+/04wtv7/f75/f0Bv9kbwNpBw9wAu9cnwNpnyuBQxt284+4rwdvf8fbs9vqt3eql2+nl9PghwNvx+fvT7POL0+Vuy+FdyN5Vx93P6vKD0eN8zuJLxdzF5vCp3Ol3zeGV1uZiyd/K6PKd2OeQ1OVFxNwQwNoJwNnY7vW34e3A5e+a2OciUFVPAAAC80lEQVRIx+2W6ZaiMBCFgUogBAMCssgm7rtOv//LTRY4jU0j9Jwz//p6WCL1ectQRdB+1RHCsxkWm/VT0sLIAQZcDBz0M34WAPXO/irLVv6HRyHA0xO2YBOFRG9khzEGhCba3p3I5JDRiJ8uY+rgSSwUiSBbY3UeljCbwl5Ii3Zxcw2zcfbAY/WeDN2ox2hM1w3bp+2Core3N7guW7ZPLwLNemcMJ8EO0T57kzjiSb8T8Rz0xngljIett8PWVlraQ6CCzU1gDRrHrbFhvFLt8QB4JGuFGl3UMEbzdhd6gy0XHZosTL25EH57qxHv+mBj6oa8oTWFMmtpH8Ht3FxZooBHoi8Z3xi7uUdbFQM9rh4HdlLxOxY9trRQHWputDuPxC++sPe3NXgKvlTCM3ZtMUjYiQ8WzJeJmBXUW78A1J2pnfhrVUlk82t/dEJ4fCjmyb/ynyD6Za3gq4zZAf4srL0M+JgrOOAwTx4UvOF7oh/2CnbP4pq+v7feM/ZHN/gn3hCZdu7pXBE1BRyyTDxK4KngNOJHwqscd9tBTE0DJ7B/hDHbqgk7Mz9Z4cpWE+ZEMvQEuFNZpHFWdAGAJCsiIwqQi06VzjvpHLewaNJEXKkr0pbUYiGTMBSRLNuSMbVcHJLunXLmmUky6pFOLYe+zPQR2Z1aN+dORsxsnqIO7UJ1dO6e3XniZSzIdx8lq4lCFVw5zrECF70uL26K009YluKzLvZx2Ixb5wClbm/5sSzkcLjfh19g17K+a2kJd2mlHtwnW7ivX/h/weSfYSs9TnAOBpxvhTEKl0Np01wfpdcDazSGwxhs6PUAjJxC9uIwSnS74mkP5P0caqf26xjQ4BpL937S0n02fL59K0F3RnNT0j12uQZwBDtMzzBbG+rJJza5l0PbA7HCjegKuagV2xSQQE0xNNdw1SYI0zKK8nJ+SeRDNJ8fL9FuTvHEt94UgKYBOOfV6kAhcADARdNf1TGyLGwBF8IWH2JL+6kwl/arF/0F4zowSpVkN1MAAAAASUVORK5CYII="},"displayName":"Phantombuster","typeVersion":1,"nodeCategories":[{"id":2,"name":"Sales"},{"id":27,"name":"Marketing"}]},{"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"}]},{"id":1119,"icon":"fa:robot","name":"@n8n/n8n-nodes-langchain.agent","codex":{"data":{"alias":["LangChain","Chat","Conversational","Plan and Execute","ReAct","Tools"],"resources":{"primaryDocumentation":[{"url":"https://docs.n8n.io/integrations/builtin/cluster-nodes/root-nodes/n8n-nodes-langchain.agent/"}]},"categories":["AI","Langchain"],"subcategories":{"AI":["Agents","Root Nodes"]}}},"group":"[\"transform\"]","defaults":{"name":"AI Agent","color":"#404040"},"iconData":{"icon":"robot","type":"icon"},"displayName":"AI Agent","typeVersion":3,"nodeCategories":[{"id":25,"name":"AI"},{"id":26,"name":"Langchain"}]},{"id":1153,"icon":"file:openAiLight.svg","name":"@n8n/n8n-nodes-langchain.lmChatOpenAi","codex":{"data":{"resources":{"primaryDocumentation":[{"url":"https://docs.n8n.io/integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.lmchatopenai/"}]},"categories":["AI","Langchain"],"subcategories":{"AI":["Language Models","Root Nodes"],"Language Models":["Chat Models (Recommended)"]}}},"group":"[\"transform\"]","defaults":{"name":"OpenAI Chat Model"},"iconData":{"type":"file","fileBuffer":"data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNDAiIGhlaWdodD0iNDAiIHZpZXdCb3g9IjAgMCA0MCA0MCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTM2Ljg2NzEgMTYuMzcxOEMzNy43NzQ2IDEzLjY0OCAzNy40NjIxIDEwLjY2NDIgMzYuMDEwOCA4LjE4NjYxQzMzLjgyODIgNC4zODY1MyAyOS40NDA3IDIuNDMxNDkgMjUuMTU1NiAzLjM1MTUxQzIzLjI0OTMgMS4yMDM5NiAyMC41MTA1IC0wLjAxNzMxNDggMTcuNjM5MiAwLjAwMDE4NTUzM0MxMy4yNTkxIC0wLjAwOTgxNDY4IDkuMzcyNzMgMi44MTAyNSA4LjAyNTIgNi45Nzc4M0M1LjIxMTM5IDcuNTU0MSAyLjc4MjU4IDkuMzE1MzggMS4zNjEzIDExLjgxMTdDLTAuODM3NDkzIDE1LjYwMTggLTAuMzM2MjMyIDIwLjM3OTQgMi42MDEzMyAyMy42Mjk0QzEuNjkzODEgMjYuMzUzMiAyLjAwNjMyIDI5LjMzNzEgMy40NTc2IDMxLjgxNDZDNS42NDAxNSAzNS42MTQ3IDEwLjAyNzcgMzcuNTY5NyAxNC4zMTI4IDM2LjY0OTdDMTYuMjE3OSAzOC43OTczIDE4Ljk1NzkgNDAuMDE4NSAyMS44MjkyIDM5Ljk5OThDMjYuMjExOCA0MC4wMTEgMzAuMDk5NCAzNy4xODg1IDMxLjQ0NjkgMzMuMDE3MUMzNC4yNjA4IDMyLjQ0MDkgMzYuNjg5NiAzMC42Nzk2IDM4LjExMDggMjguMTgzM0M0MC4zMDcxIDI0LjM5MzIgMzkuODA0NiAxOS42MTk0IDM2Ljg2ODMgMTYuMzY5M0wzNi44NjcxIDE2LjM3MThaTTIxLjgzMTcgMzcuMzg2QzIwLjA3OCAzNy4zODg1IDE4LjM3OTIgMzYuNzc0NyAxNy4wMzI5IDM1LjY1MDlDMTcuMDk0MSAzNS42MTg0IDE3LjIwMDQgMzUuNTU5NyAxNy4yNjkxIDM1LjUxNzJMMjUuMjM0MyAzMC45MTcxQzI1LjY0MTggMzAuNjg1OCAyNS44OTE4IDMwLjI1MjEgMjUuODg5MyAyOS43ODMzVjE4LjU1NDNMMjkuMjU1NyAyMC40OTgxQzI5LjI5MTkgMjAuNTE1NiAyOS4zMTU3IDIwLjU1MDYgMjkuMzIwNyAyMC41OTA2VjI5Ljg4OTZDMjkuMzE1NyAzNC4wMjQ3IDI1Ljk2NjggMzcuMzc3MiAyMS44MzE3IDM3LjM4NlpNNS43MjY0IDMwLjUwNzFDNC44NDc2MyAyOC45ODk2IDQuNTMxMzcgMjcuMjEwOCA0LjgzMjYzIDI1LjQ4NDVDNC44OTEzOCAyNS41MTk1IDQuOTk1MTMgMjUuNTgzMiA1LjA2ODg4IDI1LjYyNTdMMTMuMDM0MSAzMC4yMjU4QzEzLjQzNzggMzAuNDYyMSAxMy45Mzc4IDMwLjQ2MjEgMTQuMzQyOCAzMC4yMjU4TDI0LjA2NjggMjQuNjEwN1YyOC40OTgzQzI0LjA2OTMgMjguNTM4MyAyNC4wNTA1IDI4LjU3NyAyNC4wMTkzIDI4LjYwMkwxNS45Njc5IDMzLjI1MDlDMTIuMzgxNSAzNS4zMTU5IDcuODAxNDQgMzQuMDg4NCA1LjcyNzY1IDMwLjUwNzFINS43MjY0Wk0zLjYzMDEgMTMuMTIwNUM0LjUwNTEyIDExLjYwMDQgNS44ODY0IDEwLjQzNzkgNy41MzE0NCA5LjgzNDE1QzcuNTMxNDQgOS45MDI5IDcuNTI3NjkgMTAuMDI0MiA3LjUyNzY5IDEwLjEwOTJWMTkuMzEwNkM3LjUyNTE5IDE5Ljc3ODEgNy43NzUxOSAyMC4yMTE5IDguMTgxNDUgMjAuNDQzMUwxNy45MDU0IDI2LjA1N0wxNC41MzkxIDI4LjAwMDhDMTQuNTA1MyAyOC4wMjMzIDE0LjQ2MjggMjguMDI3IDE0LjQyNTMgMjguMDEwOEw2LjM3MjY2IDIzLjM1ODJDMi43OTM4MyAyMS4yODU2IDEuNTY2MzEgMTYuNzA2OCAzLjYyODg1IDEzLjEyMTdMMy42MzAxIDEzLjEyMDVaTTMxLjI4ODIgMTkuNTU2OUwyMS41NjQyIDEzLjk0MTdMMjQuOTMwNiAxMS45OTkyQzI0Ljk2NDMgMTEuOTc2NyAyNS4wMDY4IDExLjk3MjkgMjUuMDQ0MyAxMS45ODkyTDMzLjA5NyAxNi42MzhDMzYuNjgyMSAxOC43MDkzIDM3LjkxMDggMjMuMjk1NyAzNS44Mzk1IDI2Ljg4MDhDMzQuOTYzMyAyOC4zOTgzIDMzLjU4MzIgMjkuNTYwOCAzMS45Mzk1IDMwLjE2NThWMjAuNjg5NEMzMS45NDMyIDIwLjIyMTkgMzEuNjk0NSAxOS43ODk0IDMxLjI4OTQgMTkuNTU2OUgzMS4yODgyWk0zNC42MzgzIDE0LjUxNDJDMzQuNTc5NSAxNC40NzggMzQuNDc1OCAxNC40MTU1IDM0LjQwMiAxNC4zNzNMMjYuNDM2OCA5Ljc3Mjg5QzI2LjAzMzEgOS41MzY2NCAyNS41MzMxIDkuNTM2NjQgMjUuMTI4MSA5Ljc3Mjg5TDE1LjQwNDEgMTUuMzg4VjExLjUwMDRDMTUuNDAxNiAxMS40NjA0IDE1LjQyMDQgMTEuNDIxNyAxNS40NTE2IDExLjM5NjdMMjMuNTAzIDYuNzUxNThDMjcuMDg5NCA0LjY4Mjc5IDMxLjY3NDUgNS45MTQwNiAzMy43NDIgOS41MDE2NEMzNC42MTU4IDExLjAxNjcgMzQuOTMyIDEyLjc5MDUgMzQuNjM1OCAxNC41MTQySDM0LjYzODNaTTEzLjU3NDEgMjEuNDQzMUwxMC4yMDY1IDE5LjQ5OTRDMTAuMTcwMiAxOS40ODE5IDEwLjE0NjUgMTkuNDQ2OCAxMC4xNDE1IDE5LjQwNjhWMTAuMTA3OUMxMC4xNDQgNS45Njc4MSAxMy41MDI4IDIuNjEyNzQgMTcuNjQyOSAyLjYxNTI0QzE5LjM5NDIgMi42MTUyNCAyMS4wODkyIDMuMjMwMjUgMjIuNDM1NSA0LjM1MDI4QzIyLjM3NDMgNC4zODI3OCAyMi4yNjkzIDQuNDQxNTMgMjIuMTk5MiA0LjQ4NDAzTDE0LjIzNDEgOS4wODQxM0MxMy44MjY2IDkuMzE1MzggMTMuNTc2NiA5Ljc0Nzg5IDEzLjU3OTEgMTAuMjE2N0wxMy41NzQxIDIxLjQ0MDZWMjEuNDQzMVpNMTUuNDAyOSAxNy41MDA2TDE5LjczNDIgMTQuOTk5M0wyNC4wNjU1IDE3LjQ5OTNWMjIuNTAwN0wxOS43MzQyIDI1LjAwMDdMMTUuNDAyOSAyMi41MDA3VjE3LjUwMDZaIiBmaWxsPSIjN0Q3RDg3Ii8+Cjwvc3ZnPgo="},"displayName":"OpenAI Chat Model","typeVersion":1,"nodeCategories":[{"id":25,"name":"AI"},{"id":26,"name":"Langchain"}]},{"id":1179,"icon":"fa:code","name":"@n8n/n8n-nodes-langchain.outputParserStructured","codex":{"data":{"alias":["json","zod"],"resources":{"primaryDocumentation":[{"url":"https://docs.n8n.io/integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.outputparserstructured/"}]},"categories":["AI","Langchain"],"subcategories":{"AI":["Output Parsers"]}}},"group":"[\"transform\"]","defaults":{"name":"Structured Output Parser"},"iconData":{"icon":"code","type":"icon"},"displayName":"Structured Output Parser","typeVersion":1,"nodeCategories":[{"id":25,"name":"AI"},{"id":26,"name":"Langchain"}]}],"categories":[{"id":37,"name":"Lead Generation"},{"id":49,"name":"AI Summarization"}],"image":[]}}