{"workflow":{"id":13136,"name":"Sync Fathom meeting summaries and action items with GoHighLevel contacts","views":113,"recentViews":0,"totalViews":113,"createdAt":"2026-02-01T01:03:45.688Z","description":"## This n8n template automatically syncs your Fathom AI meeting summaries, recordings, and action items directly into GoHighLevel CRM contacts.\n\nFathom has native integrations for HubSpot and Salesforce, but **not for GoHighLevel**. This workflow fills that gap, giving GHL users the same automated meeting-to-CRM sync that other platforms enjoy. Perfect for sales teams, agencies, and consultants who want to keep their CRM updated without manual data entry.\n\n#### Good to know\n\n- Only **external attendees** are synced (your team members are filtered out automatically)\n- Contacts must already exist in GHL - the workflow matches by email address\n- Action items become tasks with a **7-day due date** by default (customizable in the Code node)\n\n## How it works\n\n1. Fathom sends a webhook when your meeting ends, containing the summary, recording link, and action items\n2. The workflow extracts external attendees from the calendar invitees list\n3. For each attendee, it searches GoHighLevel for a matching contact by email\n4. If found, it creates an **internal comment** in the contact's conversation with a brief summary and recording link\n5. A detailed **note** is added to the contact with the full meeting summary\n6. Each **action item** from the meeting becomes a GHL task assigned to that contact\n\n## How to use\n\n1. Import this workflow into your n8n instance\n2. Update the **Config** node with your GoHighLevel Location ID\n3. Connect your GoHighLevel OAuth2 credentials to all HTTP Request nodes\n4. Copy the webhook URL and add it in Fathom: Settings → API → Webhooks → \"New meeting content ready\"\n5. Activate the workflow and you're done!\n\n## Requirements\n\n- Fathom account with API access (free tier works)\n- GoHighLevel account with Private Integration Token or OAuth app\n- GHL API scopes: `contacts.readonly`, `contacts.write`, `conversations.readonly`, `conversations.write`, `conversations/message.write`\n\n## Customising this workflow\n\n- **Change task due date**: Edit the \"Prepare Action Items\" Code node to adjust the 7-day default\n- **Add Slack notifications**: Insert a Slack node after \"Create GHL Note\" to notify your team\n- **Create contacts if not found**: Add a branch after \"Contact Found?\" to create new contacts from meeting attendees\n- **Sync to Opportunities**: Extend the workflow to also update related deals/opportunities in GHL\n","workflow":{"id":"1MvjsPpyfzHsSFX5","meta":{"instanceId":"03a535bf386a34b4308a51f8df173a64066ab574d90a424ec8268641c143af71"},"name":"Sync Fathom meeting summaries to GoHighLevel contacts","tags":[],"nodes":[{"id":"13184757-4feb-4461-8b2c-043402257e27","name":"Sticky Note","type":"n8n-nodes-base.stickyNote","position":[-112,-16],"parameters":{"width":440,"height":736,"content":"## Sync Fathom meeting summaries to GoHighLevel contacts\n\n### How it works\n1. Fathom sends webhook when meeting ends with summary and action items\n2. Workflow extracts external attendees from calendar invitees\n3. Searches GoHighLevel for matching contacts by email\n4. Creates internal conversation comment with brief summary + recording link\n5. Adds detailed meeting note to contact record\n6. Converts action items into GHL tasks (due 7 days from meeting)\n\n### Setup\n- [ ] Set your `ghl_location_id` in the **Config** node\n- [ ] Connect GoHighLevel OAuth2 credentials to the HTTP Request nodes\n- [ ] Copy the webhook URL to Fathom: Settings → API → Webhooks → \"New meeting content ready\"\n- [ ] Activate the workflow\n\n### Requirements\n- Fathom account with API/webhook access\n- GoHighLevel account with Private Integration Token or OAuth app\n- Required GHL scopes: `contacts.readonly`, `contacts.write`, `conversations.readonly`, `conversations.write`, `conversations/message.write`"},"typeVersion":1},{"id":"e41e2181-2f95-4e01-a0b9-98bdbda252df","name":"Sticky Note1","type":"n8n-nodes-base.stickyNote","position":[432,368],"parameters":{"color":7,"width":664,"height":352,"content":"## 1. Webhook & Data Prep\nReceive Fathom payload and extract external meeting attendees"},"typeVersion":1},{"id":"853686be-0d4b-41a0-89cd-2541d49ecfb7","name":"Sticky Note2","type":"n8n-nodes-base.stickyNote","position":[1232,96],"parameters":{"color":7,"width":504,"height":264,"content":"## 2. Contact Matching\nLoop over attendees and search for existing GHL contacts"},"typeVersion":1},{"id":"0c640fdf-2762-41df-8419-e030857c07e9","name":"Sticky Note3","type":"n8n-nodes-base.stickyNote","position":[1760,-80],"parameters":{"color":7,"width":1320,"height":448,"content":"## 3. Conversation & Notes\nFind or create conversation, add internal comment, create detailed note"},"typeVersion":1},{"id":"cfad77ce-fe39-4003-b352-8c5724661e2c","name":"Sticky Note4","type":"n8n-nodes-base.stickyNote","position":[3120,-80],"parameters":{"color":7,"width":904,"height":552,"content":"## 4. Task Creation\nConvert Fathom action items into GHL tasks"},"typeVersion":1},{"id":"2ec60447-82d6-438a-b480-8aba481267ee","name":"Fathom Webhook","type":"n8n-nodes-base.webhook","position":[496,496],"webhookId":"fathom-webhook","parameters":{"path":"fathom-webhook","options":{},"httpMethod":"POST"},"typeVersion":2},{"id":"378a05c3-f504-4fb1-a370-10c37bca937d","name":"Config","type":"n8n-nodes-base.set","position":[720,496],"parameters":{"mode":"raw","options":{},"jsonOutput":"={\n  \"ghl_location_id\": \"YOUR_LOCATION_ID_HERE\",\n  \"webhookData\": {{ JSON.stringify($json.body || $json) }}\n}"},"typeVersion":3.4},{"id":"27d10b49-9247-4fc1-a89a-7632b47a2d67","name":"Parse External Attendees","type":"n8n-nodes-base.code","position":[944,496],"parameters":{"jsCode":"// Extract external attendees and prepare meeting data\nconst input = $input.first().json;\nconst webhookData = input.webhookData || input.body || input;\n\n// Get external attendees only\nconst externalAttendees = (webhookData.calendar_invitees || []).filter(\n  invitee => invitee.is_external === true\n);\n\nif (externalAttendees.length === 0) {\n  return [];\n}\n\n// Helper: Format date as DD/MM/YYYY\nfunction formatDate(isoString) {\n  if (!isoString) return new Date().toLocaleDateString('en-GB');\n  const date = new Date(isoString);\n  return date.toLocaleDateString('en-GB');\n}\n\n// Helper: Strip markdown links but keep text\nfunction stripLinks(text) {\n  if (!text) return '';\n  return text.replace(/\\[([^\\]]+)\\]\\([^)]+\\)/g, '$1');\n}\n\n// Helper: Get brief summary (just the meeting purpose - first paragraph)\nfunction getBriefSummary(markdown) {\n  if (!markdown) return 'Meeting recorded';\n  let cleaned = stripLinks(markdown);\n  // Find content after \"## Meeting Purpose\" header\n  const purposeMatch = cleaned.match(/## Meeting Purpose\\s*\\n+([^#]+)/i);\n  if (purposeMatch) {\n    // Get first non-empty line\n    const firstLine = purposeMatch[1].trim().split('\\n')[0].trim();\n    return firstLine || 'Meeting recorded';\n  }\n  // Fallback: get first non-header line\n  const lines = cleaned.split('\\n').filter(line => !line.startsWith('#') && line.trim());\n  return lines[0]?.trim() || 'Meeting recorded';\n}\n\n// Helper: Convert markdown to HTML and clean up (for notes)\nfunction cleanSummaryHtml(markdown) {\n  if (!markdown) return 'No summary available';\n  let cleaned = stripLinks(markdown);\n  // Remove \"## Meeting Purpose\" header\n  cleaned = cleaned.replace(/^## Meeting Purpose\\s*\\n+/i, '');\n  // Convert ## headers to bold\n  cleaned = cleaned.replace(/^##+ (.+)$/gm, '<b>$1</b>');\n  // Convert **bold** to <b>bold</b>\n  cleaned = cleaned.replace(/\\*\\*([^*]+)\\*\\*/g, '<b>$1</b>');\n  // Convert *italic* to <i>italic</i>\n  cleaned = cleaned.replace(/\\*([^*]+)\\*/g, '<i>$1</i>');\n  // Clean up excessive newlines\n  cleaned = cleaned.replace(/\\n{3,}/g, '\\n\\n');\n  return cleaned.trim();\n}\n\n// Build the note content with HTML formatting (detailed)\nconst noteBody = `<b>Meeting ${formatDate(webhookData.scheduled_start_time)}</b>\\n\\n<b>Summary</b>\\n${cleanSummaryHtml(webhookData.default_summary?.markdown_formatted)}\\n\\nMeeting recording: ${webhookData.share_url || 'N/A'}`;\n\n// Build the comment content (SHORT version for conversation history)\nconst commentBody = `Meeting ${formatDate(webhookData.scheduled_start_time)}\\n\\nSummary: ${getBriefSummary(webhookData.default_summary?.markdown_formatted)}\\n\\nRecording: ${webhookData.share_url || 'N/A'}`;\n\n// Return one item per external attendee\nreturn externalAttendees.map(attendee => ({\n  json: {\n    attendee_email: attendee.email,\n    attendee_name: attendee.name,\n    meeting_title: webhookData.title,\n    share_url: webhookData.share_url,\n    note_body: noteBody,\n    comment_body: commentBody,\n    action_items: webhookData.action_items || [],\n    meeting_date: webhookData.scheduled_start_time\n  }\n}));"},"typeVersion":2},{"id":"6563db62-372a-45a9-bb44-bca52e202932","name":"Loop Over Attendees","type":"n8n-nodes-base.splitInBatches","position":[1168,496],"parameters":{"options":{}},"typeVersion":3},{"id":"89de2bd3-b06b-4844-b53c-b57322c0d843","name":"Search GHL Contact","type":"n8n-nodes-base.httpRequest","maxTries":3,"position":[1392,208],"parameters":{"url":"https://services.leadconnectorhq.com/contacts/search","method":"POST","options":{},"jsonBody":"={\n  \"locationId\": \"{{ $('Config').item.json.ghl_location_id }}\",\n  \"query\": \"{{ $json.attendee_email }}\",\n  \"pageLimit\": 1\n}","sendBody":true,"sendHeaders":true,"specifyBody":"json","authentication":"predefinedCredentialType","headerParameters":{"parameters":[{"name":"Version","value":"2021-07-28"}]},"nodeCredentialType":"highLevelOAuth2Api"},"retryOnFail":true,"typeVersion":4.2,"waitBetweenTries":1000},{"id":"dee69363-ee52-49ce-a51b-8f9283cb8474","name":"Contact Found?","type":"n8n-nodes-base.if","position":[1616,208],"parameters":{"options":{},"conditions":{"options":{"version":2,"leftValue":"","caseSensitive":true,"typeValidation":"strict"},"combinator":"and","conditions":[{"id":"condition-contact-found","operator":{"type":"number","operation":"gt"},"leftValue":"={{ $json.contacts.length }}","rightValue":0}]}},"typeVersion":2},{"id":"0ec1373a-9a83-4007-9e57-892a817a574b","name":"Create GHL Note","type":"n8n-nodes-base.httpRequest","maxTries":3,"position":[2960,112],"parameters":{"url":"=https://services.leadconnectorhq.com/contacts/{{ $('Search GHL Contact').item.json.contacts[0].id }}/notes","method":"POST","options":{},"jsonBody":"={\n  \"body\": {{ JSON.stringify($('Parse External Attendees').item.json.note_body) }}\n}","sendBody":true,"sendHeaders":true,"specifyBody":"json","authentication":"predefinedCredentialType","headerParameters":{"parameters":[{"name":"Version","value":"2021-07-28"}]},"nodeCredentialType":"highLevelOAuth2Api"},"retryOnFail":true,"typeVersion":4.2,"waitBetweenTries":1000},{"id":"d971b5d2-0a61-4b9d-b6cd-483e5a0a0371","name":"No Contact - Skip","type":"n8n-nodes-base.noOp","position":[1840,304],"parameters":{},"typeVersion":1},{"id":"14cebc05-7642-42bb-bd5f-5cb0600a8f3d","name":"Search Conversation","type":"n8n-nodes-base.httpRequest","maxTries":3,"position":[1840,112],"parameters":{"url":"https://services.leadconnectorhq.com/conversations/search","options":{},"sendQuery":true,"sendHeaders":true,"authentication":"predefinedCredentialType","queryParameters":{"parameters":[{"name":"locationId","value":"={{ $('Config').item.json.ghl_location_id }}"},{"name":"contactId","value":"={{ $('Search GHL Contact').item.json.contacts[0].id }}"}]},"headerParameters":{"parameters":[{"name":"Version","value":"2021-04-15"}]},"nodeCredentialType":"highLevelOAuth2Api"},"retryOnFail":true,"typeVersion":4.2,"waitBetweenTries":1000},{"id":"1fbc6508-284b-4ce7-a5e0-486e0bb64303","name":"Conversation Exists?","type":"n8n-nodes-base.if","position":[2064,112],"parameters":{"options":{},"conditions":{"options":{"version":2,"leftValue":"","caseSensitive":true,"typeValidation":"strict"},"combinator":"and","conditions":[{"id":"condition-convo-exists","operator":{"type":"number","operation":"gt"},"leftValue":"={{ $json.conversations?.length || 0 }}","rightValue":0}]}},"typeVersion":2},{"id":"0fafe401-c031-4624-be41-fd23385d514b","name":"Create Conversation","type":"n8n-nodes-base.httpRequest","maxTries":3,"position":[2288,208],"parameters":{"url":"https://services.leadconnectorhq.com/conversations/","method":"POST","options":{},"jsonBody":"={\n  \"locationId\": \"{{ $('Config').item.json.ghl_location_id }}\",\n  \"contactId\": \"{{ $('Search GHL Contact').item.json.contacts[0].id }}\"\n}","sendBody":true,"sendHeaders":true,"specifyBody":"json","authentication":"predefinedCredentialType","headerParameters":{"parameters":[{"name":"Version","value":"2021-04-15"}]},"nodeCredentialType":"highLevelOAuth2Api"},"retryOnFail":true,"typeVersion":4.2,"waitBetweenTries":1000},{"id":"45565fbc-0d8a-4da2-9c60-747408f53722","name":"Use Existing Conversation","type":"n8n-nodes-base.code","position":[2512,16],"parameters":{"jsCode":"// Extract conversationId from search results (existing conversation)\nconst conversations = $('Search Conversation').item.json.conversations;\nif (conversations && conversations.length > 0) {\n  return [{ json: { conversationId: conversations[0].id } }];\n}\nthrow new Error('No conversation found');"},"typeVersion":2},{"id":"ac74a3ed-7e12-4bb7-b297-5315e97e1767","name":"Extract New Conversation ID","type":"n8n-nodes-base.code","position":[2512,208],"parameters":{"jsCode":"// Extract conversationId from newly created conversation\nconst item = $input.first().json;\nconst conversationId = item.conversation?.id || item.id;\nif (!conversationId) {\n  throw new Error('Could not get conversationId from create response');\n}\nreturn [{ json: { conversationId } }];"},"typeVersion":2},{"id":"b6dc951c-92bf-4279-8d37-7b5ac86a3735","name":"Create Internal Comment","type":"n8n-nodes-base.httpRequest","maxTries":3,"position":[2736,112],"parameters":{"url":"https://services.leadconnectorhq.com/conversations/messages/","method":"POST","options":{},"jsonBody":"={\n  \"type\": \"InternalComment\",\n  \"conversationId\": \"{{ $json.conversationId }}\",\n  \"contactId\": \"{{ $('Search GHL Contact').item.json.contacts[0].id }}\",\n  \"message\": {{ JSON.stringify($('Parse External Attendees').item.json.comment_body) }}\n}","sendBody":true,"sendHeaders":true,"specifyBody":"json","authentication":"predefinedCredentialType","headerParameters":{"parameters":[{"name":"Version","value":"2021-04-15"}]},"nodeCredentialType":"highLevelOAuth2Api"},"retryOnFail":true,"typeVersion":4.2,"waitBetweenTries":1000},{"id":"b443095c-cfbf-4a8f-981c-0f6e2cbca6a4","name":"Has Action Items?","type":"n8n-nodes-base.if","position":[3184,112],"parameters":{"options":{},"conditions":{"options":{"version":2,"leftValue":"","caseSensitive":true,"typeValidation":"strict"},"combinator":"and","conditions":[{"id":"condition-has-action-items","operator":{"type":"number","operation":"gt"},"leftValue":"={{ $('Parse External Attendees').item.json.action_items.length }}","rightValue":0}]}},"typeVersion":2},{"id":"21964090-b53a-40e8-9b65-d83b572f66b9","name":"No Action Items - Skip","type":"n8n-nodes-base.noOp","position":[3408,208],"parameters":{},"typeVersion":1},{"id":"43f0a677-20af-4877-8125-94dbf5dde216","name":"Prepare Action Items","type":"n8n-nodes-base.code","position":[3408,16],"parameters":{"jsCode":"const contactId = $('Search GHL Contact').item.json.contacts[0].id;\nconst actionItems = $('Parse External Attendees').item.json.action_items || [];\nconst meetingTitle = $('Parse External Attendees').item.json.meeting_title;\n\n// Calculate due date (7 days from now at 17:00)\nconst dueDate = new Date();\ndueDate.setDate(dueDate.getDate() + 7);\ndueDate.setHours(17, 0, 0, 0);\n\nreturn actionItems.map(item => ({\n  json: {\n    contactId: contactId,\n    title: item.description,\n    completed: item.completed || false,\n    dueDate: dueDate.toISOString(),\n    body: `<b>From meeting:</b> ${meetingTitle}`\n  }\n}));"},"typeVersion":2},{"id":"330549a0-e39d-4b9b-a055-ffc8d2df0113","name":"Loop Over Action Items","type":"n8n-nodes-base.splitInBatches","position":[3632,272],"parameters":{"options":{}},"typeVersion":3},{"id":"90f8f4eb-64b1-4afe-9deb-3c432acd3166","name":"Create GHL Task","type":"n8n-nodes-base.httpRequest","maxTries":3,"position":[3856,272],"parameters":{"url":"=https://services.leadconnectorhq.com/contacts/{{ $json.contactId }}/tasks","method":"POST","options":{},"jsonBody":"={\n  \"title\": {{ JSON.stringify($json.title) }},\n  \"dueDate\": \"{{ $json.dueDate }}\",\n  \"completed\": {{ $json.completed }},\n  \"body\": {{ JSON.stringify($json.body) }}\n}","sendBody":true,"sendHeaders":true,"specifyBody":"json","authentication":"predefinedCredentialType","headerParameters":{"parameters":[{"name":"Version","value":"2021-07-28"}]},"nodeCredentialType":"highLevelOAuth2Api"},"retryOnFail":true,"typeVersion":4.2,"waitBetweenTries":1000}],"active":false,"pinData":{},"settings":{"executionOrder":"v1"},"versionId":"36d06667-fa12-41ef-b7e7-f8ede9bb8f3b","connections":{"Config":{"main":[[{"node":"Parse External Attendees","type":"main","index":0}]]},"Contact Found?":{"main":[[{"node":"Search Conversation","type":"main","index":0}],[{"node":"No Contact - Skip","type":"main","index":0}]]},"Fathom Webhook":{"main":[[{"node":"Config","type":"main","index":0}]]},"Create GHL Note":{"main":[[{"node":"Has Action Items?","type":"main","index":0}]]},"Create GHL Task":{"main":[[{"node":"Loop Over Action Items","type":"main","index":0}]]},"Has Action Items?":{"main":[[{"node":"Prepare Action Items","type":"main","index":0}],[{"node":"No Action Items - Skip","type":"main","index":0}]]},"No Contact - Skip":{"main":[[{"node":"Loop Over Attendees","type":"main","index":0}]]},"Search GHL Contact":{"main":[[{"node":"Contact Found?","type":"main","index":0}]]},"Create Conversation":{"main":[[{"node":"Extract New Conversation ID","type":"main","index":0}]]},"Loop Over Attendees":{"main":[[],[{"node":"Search GHL Contact","type":"main","index":0}]]},"Search Conversation":{"main":[[{"node":"Conversation Exists?","type":"main","index":0}]]},"Conversation Exists?":{"main":[[{"node":"Use Existing Conversation","type":"main","index":0}],[{"node":"Create Conversation","type":"main","index":0}]]},"Prepare Action Items":{"main":[[{"node":"Loop Over Action Items","type":"main","index":0}]]},"Loop Over Action Items":{"main":[[{"node":"Loop Over Attendees","type":"main","index":0}],[{"node":"Create GHL Task","type":"main","index":0}]]},"No Action Items - Skip":{"main":[[{"node":"Loop Over Attendees","type":"main","index":0}]]},"Create Internal Comment":{"main":[[{"node":"Create GHL Note","type":"main","index":0}]]},"Parse External Attendees":{"main":[[{"node":"Loop Over Attendees","type":"main","index":0}]]},"Use Existing Conversation":{"main":[[{"node":"Create Internal Comment","type":"main","index":0}]]},"Extract New Conversation ID":{"main":[[{"node":"Create Internal Comment","type":"main","index":0}]]}}},"lastUpdatedBy":1,"workflowInfo":{"nodeCount":24,"nodeTypes":{"n8n-nodes-base.if":{"count":3},"n8n-nodes-base.set":{"count":1},"n8n-nodes-base.code":{"count":4},"n8n-nodes-base.noOp":{"count":2},"n8n-nodes-base.webhook":{"count":1},"n8n-nodes-base.stickyNote":{"count":5},"n8n-nodes-base.httpRequest":{"count":6},"n8n-nodes-base.splitInBatches":{"count":2}}},"status":"published","readyToDemo":null,"user":{"name":"Dmytro","username":"dmytroai","bio":"I help businesses save 10+ hours weekly and generate 300%+ ROI by building AI systems that automate repetitive work and let teams focus on what matters.","verified":false,"links":["https://www.dmytroai.com/"],"avatar":"https://gravatar.com/avatar/1840cfaafa0538a09a8e519e25ce81aa07b64112a52e7a3b757b7f65e7b6a17e?r=pg&d=retro&size=200"},"nodes":[{"id":19,"icon":"file:httprequest.svg","name":"n8n-nodes-base.httpRequest","codex":{"data":{"alias":["API","Request","URL","Build","cURL"],"resources":{"generic":[{"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/automatically-pulling-and-visualizing-data-with-n8n/","icon":"📈","label":"Automatically pulling and visualizing data with n8n"},{"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/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/running-n8n-on-ships-an-interview-with-maranics/","icon":"🛳","label":"Running n8n on ships: An interview with Maranics"},{"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/world-poetry-day-workflow/","icon":"📜","label":"Celebrating World Poetry Day with a daily poem in Telegram"},{"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/automate-designs-with-bannerbear-and-n8n/","icon":"🎨","label":"Automate Designs with Bannerbear and n8n"},{"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/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/how-to-use-the-http-request-node-the-swiss-army-knife-for-workflow-automation/","icon":"🧰","label":"How to use the HTTP Request Node - The Swiss Army Knife for Workflow Automation"},{"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-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/automations-for-activists/","icon":"✨","label":"How Common Knowledge use workflow automation for activism"},{"url":"https://n8n.io/blog/creating-scheduled-text-affirmations-with-n8n/","icon":"🤟","label":"Creating scheduled text affirmations with n8n"},{"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.httprequest/"}]},"categories":["Development","Core Nodes"],"nodeVersion":"1.0","codexVersion":"1.0","subcategories":{"Core Nodes":["Helpers"]}}},"group":"[\"output\"]","defaults":{"name":"HTTP Request","color":"#0004F5"},"iconData":{"type":"file","fileBuffer":"data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNDAiIGhlaWdodD0iNDAiIHZpZXdCb3g9IjAgMCA0MCA0MCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik00MCAyMEM0MCA4Ljk1MzE0IDMxLjA0NjkgMCAyMCAwQzguOTUzMTQgMCAwIDguOTUzMTQgMCAyMEMwIDMxLjA0NjkgOC45NTMxNCA0MCAyMCA0MEMzMS4wNDY5IDQwIDQwIDMxLjA0NjkgNDAgMjBaTTIwIDM2Ljk0NThDMTguODg1MiAzNi45NDU4IDE3LjEzNzggMzUuOTY3IDE1LjQ5OTggMzIuNjk4NUMxNC43OTY0IDMxLjI5MTggMTQuMTk2MSAyOS41NDMxIDEzLjc1MjYgMjcuNjg0N0gyNi4xODk4QzI1LjgwNDUgMjkuNTQwMyAyNS4yMDQ0IDMxLjI5MDEgMjQuNTAwMiAzMi42OTg1QzIyLjg2MjIgMzUuOTY3IDIxLjExNDggMzYuOTQ1OCAyMCAzNi45NDU4Wk0xMi45MDY0IDIwQzEyLjkwNjQgMjEuNjA5NyAxMy4wMDg3IDIzLjE2NCAxMy4yMDAzIDI0LjYzMDVIMjYuNzk5N0MyNi45OTEzIDIzLjE2NCAyNy4wOTM2IDIxLjYwOTcgMjcuMDkzNiAyMEMyNy4wOTM2IDE4LjM5MDMgMjYuOTkxMyAxNi44MzYgMjYuNzk5NyAxNS4zNjk1SDEzLjIwMDNDMTMuMDA4NyAxNi44MzYgMTIuOTA2NCAxOC4zOTAzIDEyLjkwNjQgMjBaTTIwIDMuMDU0MTlDMjEuMTE0OSAzLjA1NDE5IDIyLjg2MjIgNC4wMzA3OCAyNC41MDAxIDcuMzAwMzlDMjUuMjA2NiA4LjcxNDA4IDI1LjgwNzIgMTAuNDA2NyAyNi4xOTIgMTIuMzE1M0gxMy43NTAxQzE0LjE5MzMgMTAuNDA0NyAxNC43OTQyIDguNzEyNTQgMTUuNDk5OCA3LjMwMDY0QzE3LjEzNzcgNC4wMzA4MyAxOC44ODUxIDMuMDU0MTkgMjAgMy4wNTQxOVpNMzAuMTQ3OCAyMEMzMC4xNDc4IDE4LjQwOTkgMzAuMDU0MyAxNi44NjE3IDI5LjgyMjcgMTUuMzY5NUgzNi4zMDQyQzM2LjcyNTIgMTYuODQyIDM2Ljk0NTggMTguMzk2NCAzNi45NDU4IDIwQzM2Ljk0NTggMjEuNjAzNiAzNi43MjUyIDIzLjE1OCAzNi4zMDQyIDI0LjYzMDVIMjkuODIyN0MzMC4wNTQzIDIzLjEzODMgMzAuMTQ3OCAyMS41OTAxIDMwLjE0NzggMjBaTTI2LjI3NjcgNC4yNTUxMkMyNy42MzY1IDYuMzYwMTkgMjguNzExIDkuMTMyIDI5LjM3NzQgMTIuMzE1M0gzNS4xMDQ2QzMzLjI1MTEgOC42NjggMzAuMTA3IDUuNzgzNDYgMjYuMjc2NyA0LjI1NTEyWk0xMC42MjI2IDEyLjMxNTNINC44OTI5M0M2Ljc1MTQ3IDguNjY3ODQgOS44OTM1MSA1Ljc4MzQxIDEzLjcyMzIgNC4yNTUxM0MxMi4zNjM1IDYuMzYwMjEgMTEuMjg5IDkuMTMyMDEgMTAuNjIyNiAxMi4zMTUzWk0zLjA1NDE5IDIwQzMuMDU0MTkgMjEuNjAzIDMuMjc3NDMgMjMuMTU3NSAzLjY5NDg0IDI0LjYzMDVIMTAuMTIxN0M5Ljk0NjE5IDIzLjE0MiA5Ljg1MjIyIDIxLjU5NDMgOS44NTIyMiAyMEM5Ljg1MjIyIDE4LjQwNTcgOS45NDYxOSAxNi44NTggMTAuMTIxNyAxNS4zNjk1SDMuNjk0ODRDMy4yNzc0MyAxNi44NDI1IDMuMDU0MTkgMTguMzk3IDMuMDU0MTkgMjBaTTI2LjI3NjYgMzUuNzQyN0MyNy42MzY1IDMzLjYzOTMgMjguNzExIDMwLjg2OCAyOS4zNzc0IDI3LjY4NDdIMzUuMTA0NkMzMy4yNTEgMzEuMzMyMiAzMC4xMDY4IDM0LjIxNzkgMjYuMjc2NiAzNS43NDI3Wk0xMy43MjM0IDM1Ljc0MjdDOS44OTM2OSAzNC4yMTc5IDYuNzUxNTUgMzEuMzMyNCA0Ljg5MjkzIDI3LjY4NDdIMTAuNjIyNkMxMS4yODkgMzAuODY4IDEyLjM2MzUgMzMuNjM5MyAxMy43MjM0IDM1Ljc0MjdaIiBmaWxsPSIjM0E0MkU5Ii8+Cjwvc3ZnPgo="},"displayName":"HTTP Request","typeVersion":4,"nodeCategories":[{"id":5,"name":"Development"},{"id":9,"name":"Core 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":26,"icon":"fa:arrow-right","name":"n8n-nodes-base.noOp","codex":{"data":{"alias":["nothing"],"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/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/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/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/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.noop/"}]},"categories":["Core Nodes"],"nodeVersion":"1.0","codexVersion":"1.0","subcategories":{"Core Nodes":["Helpers"]}}},"group":"[\"organization\"]","defaults":{"name":"No Operation, do nothing","color":"#b0b0b0"},"iconData":{"icon":"arrow-right","type":"icon"},"displayName":"No Operation, do nothing","typeVersion":1,"nodeCategories":[{"id":9,"name":"Core 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":39,"icon":"fa:sync","name":"n8n-nodes-base.splitInBatches","codex":{"data":{"alias":["Loop","Concatenate","Batch","Split","Split In Batches"],"resources":{"generic":[{"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/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"}],"primaryDocumentation":[{"url":"https://docs.n8n.io/integrations/builtin/core-nodes/n8n-nodes-base.splitinbatches/"}]},"categories":["Core Nodes"],"nodeVersion":"1.0","codexVersion":"1.0","subcategories":{"Core Nodes":["Flow"]}}},"group":"[\"organization\"]","defaults":{"name":"Loop Over Items","color":"#007755"},"iconData":{"icon":"sync","type":"icon"},"displayName":"Loop Over Items (Split in Batches)","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":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":834,"icon":"file:code.svg","name":"n8n-nodes-base.code","codex":{"data":{"alias":["cpde","Javascript","JS","Python","Script","Custom Code","Function"],"details":"The Code node allows you to execute JavaScript in your workflow.","resources":{"primaryDocumentation":[{"url":"https://docs.n8n.io/integrations/builtin/core-nodes/n8n-nodes-base.code/"}]},"categories":["Development","Core Nodes"],"nodeVersion":"1.0","codexVersion":"1.0","subcategories":{"Core Nodes":["Helpers","Data Transformation"]}}},"group":"[\"transform\"]","defaults":{"name":"Code"},"iconData":{"type":"file","fileBuffer":"data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNTEyIiBoZWlnaHQ9IjUxMiIgdmlld0JveD0iMCAwIDUxMiA1MTIiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+CjxnIGNsaXAtcGF0aD0idXJsKCNjbGlwMF8xMTcxXzQ0MSkiPgo8cGF0aCBkPSJNMTcwLjI4MyA0OEgxOTYuNUMyMDMuMTI3IDQ4IDIwOC41IDQyLjYyNzQgMjA4LjUgMzZWMTJDMjA4LjUgNS4zNzI1OCAyMDMuMTI3IDAgMTk2LjUgMEgxNzAuMjgzQzEyNi4xIDAgOTAuMjgzIDM1LjgxNzIgOTAuMjgzIDgwVjE3NkM5MC4yODMgMjA2LjkyOCA2NS4yMTA5IDIzMiAzNC4yODMgMjMySDIzQzE2LjM3MjYgMjMyIDExIDIzNy4zNzIgMTEgMjQ0VjI2OEMxMSAyNzQuNjI3IDE2LjM3MjQgMjgwIDIyLjk5OTYgMjgwTDM0LjI4MyAyODBDNjUuMjEwOSAyODAgOTAuMjgzIDMwNS4wNzIgOTAuMjgzIDMzNlY0NDBDOTAuMjgzIDQ3OS43NjQgMTIyLjUxOCA1MTIgMTYyLjI4MyA1MTJIMTk2LjVDMjAzLjEyNyA1MTIgMjA4LjUgNTA2LjYyNyAyMDguNSA1MDBWNDc2QzIwOC41IDQ2OS4zNzMgMjAzLjEyNyA0NjQgMTk2LjUgNDY0SDE2Mi4yODNDMTQ5LjAyOCA0NjQgMTM4LjI4MyA0NTMuMjU1IDEzOC4yODMgNDQwVjMzNkMxMzguMjgzIDMwOS4wMjIgMTI4LjAxMSAyODQuNDQzIDExMS4xNjQgMjY1Ljk2MUMxMDYuMTA5IDI2MC40MTYgMTA2LjEwOSAyNTEuNTg0IDExMS4xNjQgMjQ2LjAzOUMxMjguMDExIDIyNy41NTcgMTM4LjI4MyAyMDIuOTc4IDEzOC4yODMgMTc2VjgwQzEzOC4yODMgNjIuMzI2OSAxNTIuNjEgNDggMTcwLjI4MyA0OFoiIGZpbGw9IiNGRjk5MjIiLz4KPHBhdGggZD0iTTMwNSAzNkMzMDUgNDIuNjI3NCAzMTAuMzczIDQ4IDMxNyA0OEgzNDIuOTc5QzM2MC42NTIgNDggMzc0Ljk3OCA2Mi4zMjY5IDM3NC45NzggODBWMTc2QzM3NC45NzggMjAyLjk3OCAzODUuMjUxIDIyNy41NTcgNDAyLjA5OCAyNDYuMDM5QzQwNy4xNTMgMjUxLjU4NCA0MDcuMTUzIDI2MC40MTYgNDAyLjA5OCAyNjUuOTYxQzM4NS4yNTEgMjg0LjQ0MyAzNzQuOTc4IDMwOS4wMjIgMzc0Ljk3OCAzMzZWNDMyQzM3NC45NzggNDQ5LjY3MyAzNjAuNjUyIDQ2NCAzNDIuOTc5IDQ2NEgzMTdDMzEwLjM3MyA0NjQgMzA1IDQ2OS4zNzMgMzA1IDQ3NlY1MDBDMzA1IDUwNi42MjcgMzEwLjM3MyA1MTIgMzE3IDUxMkgzNDIuOTc5QzM4Ny4xNjEgNTEyIDQyMi45NzggNDc2LjE4MyA0MjIuOTc4IDQzMlYzMzZDNDIyLjk3OCAzMDUuMDcyIDQ0OC4wNTEgMjgwIDQ3OC45NzkgMjgwSDQ5MEM0OTYuNjI3IDI4MCA1MDIgMjc0LjYyOCA1MDIgMjY4VjI0NEM1MDIgMjM3LjM3MyA0OTYuNjI4IDIzMiA0OTAgMjMyTDQ3OC45NzkgMjMyQzQ0OC4wNTEgMjMyIDQyMi45NzggMjA2LjkyOCA0MjIuOTc4IDE3NlY4MEM0MjIuOTc4IDM1LjgxNzIgMzg3LjE2MSAwIDM0Mi45NzkgMEgzMTdDMzEwLjM3MyAwIDMwNSA1LjM3MjU4IDMwNSAxMlYzNloiIGZpbGw9IiNGRjk5MjIiLz4KPC9nPgo8ZGVmcz4KPGNsaXBQYXRoIGlkPSJjbGlwMF8xMTcxXzQ0MSI+CjxyZWN0IHdpZHRoPSI1MTIiIGhlaWdodD0iNTEyIiBmaWxsPSJ3aGl0ZSIvPgo8L2NsaXBQYXRoPgo8L2RlZnM+Cjwvc3ZnPgo="},"displayName":"Code","typeVersion":2,"nodeCategories":[{"id":5,"name":"Development"},{"id":9,"name":"Core Nodes"}]}],"categories":[{"id":39,"name":"CRM"},{"id":49,"name":"AI Summarization"}],"image":[]}}