{"workflow":{"id":14304,"name":"Add, update, and fetch contacts from a Notion database by email","views":151,"recentViews":4,"totalViews":151,"createdAt":"2026-03-24T17:52:45.663Z","description":"## 🚀 Overview\n\nStore, update, and retrieve contacts in a Notion database by sending a JSON payload to an n8n workflow. Email is used as the unique identifier — no Notion page IDs required.\n\n## ✨ What this workflow does\n\nThe workflow has three actions, controlled by a single `action` field in the payload:\n\n- **Create** — checks if a contact with that email already exists. Blocks the request if it does. Creates a new row in Notion if it does not.\n- **Update** — finds the contact by email automatically and updates their details. No Notion page ID needed.\n- **Get** — searches Notion by email and returns the contact's details.\n\n## 🔧 Requirements\n\n- An n8n instance (cloud or self-hosted)\n- A Notion account with an API integration token\n- A Notion database with these columns:\n\n| Column | Notion type |\n|--------|-------------|\n| Name | Title |\n| Email | Email |\n| Phone | Phone number |\n| Status | Select — suggested options: Lead, Contacted, Qualified, Customer, Closed |\n| Notes | Text |\n\n## ⚙️ Setup\n\n1. **Create a Notion integration** — go to [notion.so/my-integrations](https://www.notion.so/my-integrations), create a new integration, and copy the token.\n2. **Add credentials in n8n** — go to Credentials → New → Notion API → paste your token → save.\n3. **Connect your database** — in Notion, open your database → click `...` top right → Connections → select your integration.\n4. **Select your database in n8n** — open each Notion node in the workflow and pick your database from the dropdown.\n5. **Test** — use the Manual Trigger with the sample payloads below to confirm each branch works.\n6. **Go live** — replace the Manual Trigger with a Webhook node. Send POST requests to the generated URL from any app or form.\n\n## 📚 Sample payloads\n\nUse these in the Manual Trigger to test each action:\n\n**Create a contact:**\n```json\n{\n  \"action\": \"create\",\n  \"name\": \"Jane Doe\",\n  \"email\": \"jane.doe@example.com\",\n  \"phone\": \"+49 123 456 789\",\n  \"status\": \"Lead\",\n  \"notes\": \"Met at Berlin conference\"\n}\n```\n\n**Update a contact:**\n```json\n{\n  \"action\": \"update\",\n  \"email\": \"jane.doe@example.com\",\n  \"name\": \"Jane Doe\",\n  \"phone\": \"+49 123 456 789\",\n  \"status\": \"Customer\",\n  \"notes\": \"Signed contract on March 24\"\n}\n```\n\n**Fetch a contact:**\n```json\n{\n  \"action\": \"get\",\n  \"email\": \"jane.doe@example.com\"\n}\n```\n\n## 🖥 Connect a frontend\n\nThis workflow works as a backend API. Any frontend can send POST requests to the Webhook URL and display the response — no direct Notion API connection needed in the frontend.\n\nWhat n8n handles so your frontend does not have to:\n- Checks for duplicate emails before creating a contact\n- Finds the correct Notion row by email before updating — no page ID management\n- Returns structured JSON responses for success and error states\n\nTo wire up a frontend: replace the Manual Trigger with a Webhook node, point your form or dashboard at the Webhook URL, and read the JSON response to show feedback to the user. Works with React, Vue, plain HTML, or no-code tools like Webflow or Bubble.\n\n## 💡 Notes\n\n- `status` values are case-sensitive — send `Lead` not `lead`.\n- Every contact must have a unique email address. The create action blocks duplicates.\n- The update action returns an error if the email is not found — run create first.\n- The get action returns one contact per email lookup.\n","workflow":{"id":"NUFFIIXDnAoWfses","meta":{"instanceId":"a37c127c368affab56704b03c743021f2ee87c596599b97c8cf708b183214a2d","templateCredsSetupCompleted":true},"name":"Add, update, and fetch contacts from a Notion database using n8n","tags":[{"id":"IOqTK9xv9VrD957b","name":"Notion","createdAt":"2026-03-24T01:47:10.492Z","updatedAt":"2026-03-24T01:47:10.492Z"},{"id":"RqOjEiK0geGgGlAc","name":"CRM","createdAt":"2026-03-24T01:47:10.520Z","updatedAt":"2026-03-24T01:47:10.520Z"}],"nodes":[{"id":"c9e06bcb-5c0f-497c-9a4b-31f422fe893e","name":"Sticky Note — Main","type":"n8n-nodes-base.stickyNote","position":[-2192,-160],"parameters":{"width":476,"height":480,"content":"## How it works\n1. The Manual Trigger fires with a JSON payload containing an `action` field (`create`, `update`, or `get`).\n2. The Switch node routes the request to the correct branch.\n3. **Create** — searches by email first. If the contact exists, the request is blocked. If not, a new Notion page is created.\n4. **Update** — searches by email to find the page ID automatically, then updates the matching row.\n5. **Get** — searches by email and returns the contact's full data.\n\n## Setup steps\n1. Connect your Notion account under Credentials.\n2. Open each Notion node and select your database from the list.\n3. In Notion, go to your database → `...` → Connections → add your integration.\n4. Make sure your database has these columns: `Name` (title), `Email` (email), `Phone` (phone), `Status` (select), `Notes` (text).\n5. For production use, replace the Manual Trigger with a Webhook node."},"typeVersion":1},{"id":"e86f5856-122e-4d0c-9c88-61d1005dd3f8","name":"Sticky Note — Create","type":"n8n-nodes-base.stickyNote","position":[-1184,-512],"parameters":{"color":7,"width":716,"height":356,"content":"## Create branch\nChecks if email already exists before creating.\nBlocks duplicates automatically."},"typeVersion":1},{"id":"d0e4cfa9-cda4-4727-9803-5477d45b3228","name":"Sticky Note — Update","type":"n8n-nodes-base.stickyNote","position":[-1184,-128],"parameters":{"color":7,"width":716,"height":340,"content":"## Update branch\nFinds contact by email automatically.\nNo manual page ID needed."},"typeVersion":1},{"id":"1ef1da76-962a-4e4c-9504-91e958ee6bc3","name":"Sticky Note — Get","type":"n8n-nodes-base.stickyNote","position":[-1008,240],"parameters":{"color":7,"width":364,"height":276,"content":"## Get branch\nRetrieves a contact by email.\nReturns all Notion page properties."},"typeVersion":1},{"id":"968bbc62-eb30-4bf7-a929-0d790c1e4bf8","name":"Manual Trigger","type":"n8n-nodes-base.manualTrigger","position":[-1680,48],"parameters":{},"typeVersion":1},{"id":"45fca751-a90e-4ad0-a3f7-8fbaec9ef310","name":"Search — Email Exists?","type":"n8n-nodes-base.notion","position":[-1120,-368],"parameters":{"limit":1,"filters":{"conditions":[{"key":"Email|email","condition":"equals","emailValue":"={{ $json.email }}"}]},"options":{},"resource":"databasePage","operation":"getAll","databaseId":{"__rl":true,"mode":"list","value":"YOUR_NOTION_DATABASE_ID","cachedResultName":"Your Notion database name"},"filterType":"manual"},"typeVersion":2,"alwaysOutputData":true},{"id":"ca6cdc4e-4c08-41a0-9e28-136153240ba9","name":"Already Exists?","type":"n8n-nodes-base.if","position":[-896,-368],"parameters":{"options":{},"conditions":{"options":{"version":1,"leftValue":"","caseSensitive":true,"typeValidation":"strict"},"combinator":"and","conditions":[{"id":"fdda1e6b-cbf3-4c51-858c-a6fe4c9253df","operator":{"type":"string","operation":"notEmpty"},"leftValue":"={{ $json.id }}","rightValue":""}]}},"typeVersion":2},{"id":"89741cd5-db5a-407d-8440-6c62ff0fe39a","name":"Block Duplicate","type":"n8n-nodes-base.respondToWebhook","position":[-688,-448],"parameters":{"options":{},"respondWith":"json","responseBody":"={ \"error\": \"Contact with this email already exists. Use action: update instead.\" }"},"typeVersion":1},{"id":"aea1e92e-6a46-471d-9071-14a65a51ecc8","name":"Search — Find by Email","type":"n8n-nodes-base.notion","position":[-1104,48],"parameters":{"limit":1,"filters":{"conditions":[{"key":"Email|email","condition":"equals","emailValue":"={{ $json.email }}"}]},"options":{},"resource":"databasePage","operation":"getAll","databaseId":{"__rl":true,"mode":"list","value":"YOUR_NOTION_DATABASE_ID","cachedResultName":"Your Notion database name"},"filterType":"manual"},"typeVersion":2},{"id":"86cbd614-e602-4c16-ac56-4907ce0e2689","name":"Person Found?","type":"n8n-nodes-base.if","position":[-880,48],"parameters":{"options":{},"conditions":{"conditions":[{"operator":{"type":"string","operation":"notEmpty"},"leftValue":"={{ $json.id }}","rightValue":""}]}},"typeVersion":2},{"id":"2836c871-e37a-49b1-94dd-9e7130d8a25f","name":"Not Found Error","type":"n8n-nodes-base.respondToWebhook","position":[-672,80],"parameters":{"options":{},"respondWith":"json","responseBody":"={ \"error\": \"No contact found with that email. Use action: create instead.\" }"},"typeVersion":1},{"id":"bde08172-7822-433b-adfe-dbe7cb252d2d","name":"Respond","type":"n8n-nodes-base.respondToWebhook","position":[-288,48],"parameters":{"options":{},"respondWith":"json","responseBody":"={{ $json }}"},"typeVersion":1},{"id":"00f3a676-3203-4750-bf26-e6c9861477d3","name":"Switch1","type":"n8n-nodes-base.switch","position":[-1456,32],"parameters":{"rules":{"values":[{"conditions":{"options":{"version":1,"leftValue":"","caseSensitive":true,"typeValidation":"strict"},"combinator":"and","conditions":[{"id":"f1193635-4010-4f17-96d7-d60c4a0c5db1","operator":{"type":"string","operation":"equals"},"leftValue":"={{ $json.action }}","rightValue":"create"}]}},{"conditions":{"options":{"version":1,"leftValue":"","caseSensitive":true,"typeValidation":"strict"},"combinator":"and","conditions":[{"id":"62f69db7-f81e-4575-b6c6-71db7578f7ff","operator":{"type":"string","operation":"equals"},"leftValue":"={{ $json.action }}","rightValue":"update"}]}},{"conditions":{"options":{"version":1,"leftValue":"","caseSensitive":true,"typeValidation":"strict"},"combinator":"and","conditions":[{"id":"ce5d0edb-5cff-4e21-8e82-0161acca5ee9","operator":{"type":"string","operation":"equals"},"leftValue":"={{ $json.action }}","rightValue":"get"}]}}]},"options":{}},"typeVersion":3},{"id":"63a8fb78-0157-45cb-8e61-3daa98386f90","name":"Notion — Create Person1","type":"n8n-nodes-base.notion","position":[-688,-304],"parameters":{"title":"={{ $('Switch1').item.json.name }}","options":{},"resource":"databasePage","databaseId":{"__rl":true,"mode":"list","value":"YOUR_NOTION_DATABASE_ID","cachedResultName":"Your Notion database name"},"propertiesUi":{"propertyValues":[{"key":"Email|email","emailValue":"={{ $('Switch1').item.json.email }}"},{"key":"Phone|phone_number","phoneValue":"={{ $('Switch1').item.json.phone }}"},{"key":"Status|select","selectValue":"={{ $('Switch1').item.json.status }}"},{"key":"Notes|rich_text","textContent":"={{ $('Switch1').item.json.notes }}"}]}},"typeVersion":2},{"id":"4ffa0180-596c-4c96-a670-f5eed8b06c01","name":"Notion — Update Person1","type":"n8n-nodes-base.notion","position":[-672,-96],"parameters":{"pageId":{"__rl":true,"mode":"id","value":"={{ $json.id }}"},"options":{},"resource":"databasePage","operation":"update","propertiesUi":{"propertyValues":[{"key":"Name|title","type":"title","title":"={{ $('Manual Trigger').item.json.name }}"},{"key":"Email|email","type":"email","emailValue":"={{ $('Manual Trigger').item.json.email }}"},{"key":"Phone|phone_number","type":"phone_number","phoneValue":"={{ $('Manual Trigger').item.json.phone }}"},{"key":"Status|select","type":"select","selectValue":"={{ $('Manual Trigger').item.json.status }}"},{"key":"Notes|rich_text","type":"rich_text","textContent":"={{ $('Manual Trigger').item.json.notes }}"}]}},"typeVersion":2},{"id":"de27e473-a6de-4fc8-ad34-d3dd59868ca2","name":"Notion — Get Person1","type":"n8n-nodes-base.notion","position":[-880,352],"parameters":{"limit":1,"filters":{"conditions":[{"key":"Email|email","condition":"equals","emailValue":"={{ $json.email }}"}]},"options":{},"resource":"databasePage","operation":"getAll","databaseId":{"__rl":true,"mode":"list","value":"YOUR_NOTION_DATABASE_ID","cachedResultName":"Your Notion database name"},"filterType":"manual"},"typeVersion":2},{"id":"8153f3fb-6235-48b6-946f-82a27c76e466","name":"Sticky Note — Switch","type":"n8n-nodes-base.stickyNote","position":[-1488,-112],"parameters":{"color":7,"width":160,"height":338,"content":"## Router\nRoutes `create`, `update`, and `get`\nto their respective branches."},"typeVersion":1}],"active":false,"pinData":{"Manual Trigger":[{"json":{"name":"Jane Doe","email":"jane.doe@example.com","notes":"Met at Berlin conference","phone":"+49 123 456 789","action":"create","status":"Lead"}}]},"settings":{"binaryMode":"separate","availableInMCP":false,"executionOrder":"v1"},"versionId":"422c638b-3af8-4f4c-9a24-dbda0833561f","connections":{"Switch1":{"main":[[{"node":"Search — Email Exists?","type":"main","index":0}],[{"node":"Search — Find by Email","type":"main","index":0}],[{"node":"Notion — Get Person1","type":"main","index":0}]]},"Person Found?":{"main":[[{"node":"Notion — Update Person1","type":"main","index":0}],[{"node":"Not Found Error","type":"main","index":0}]]},"Manual Trigger":{"main":[[{"node":"Switch1","type":"main","index":0}]]},"Already Exists?":{"main":[[{"node":"Block Duplicate","type":"main","index":0}],[{"node":"Notion — Create Person1","type":"main","index":0}]]},"Notion — Get Person1":{"main":[[{"node":"Respond","type":"main","index":0}]]},"Search — Email Exists?":{"main":[[{"node":"Already Exists?","type":"main","index":0}]]},"Search — Find by Email":{"main":[[{"node":"Person Found?","type":"main","index":0}]]},"Notion — Create Person1":{"main":[[{"node":"Respond","type":"main","index":0}]]},"Notion — Update Person1":{"main":[[{"node":"Respond","type":"main","index":0}]]}}},"lastUpdatedBy":1,"workflowInfo":{"nodeCount":17,"nodeTypes":{"n8n-nodes-base.if":{"count":2},"n8n-nodes-base.notion":{"count":5},"n8n-nodes-base.switch":{"count":1},"n8n-nodes-base.stickyNote":{"count":5},"n8n-nodes-base.manualTrigger":{"count":1},"n8n-nodes-base.respondToWebhook":{"count":3}}},"status":"published","readyToDemo":null,"user":{"name":"Tejasv Makkar","username":"tmakkar","bio":"https://www.linkedin.com/in/tejasv-makkar/","verified":true,"links":[""],"avatar":"https://gravatar.com/avatar/0f31fdbbb21077b8977fa34ab0f71b60970572462574cede8ff1c0b8b4938003?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":112,"icon":"fa:map-signs","name":"n8n-nodes-base.switch","codex":{"data":{"alias":["Router","If","Path","Filter","Condition","Logic","Branch","Case"],"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/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/build-your-own-virtual-assistant-with-n8n-a-step-by-step-guide/","icon":"👦","label":"Build your own virtual assistant with n8n: A step by step guide"},{"url":"https://n8n.io/blog/automation-for-maintainers-of-open-source-projects/","icon":"🏷️","label":"How to automatically manage contributions to open-source projects"}],"primaryDocumentation":[{"url":"https://docs.n8n.io/integrations/builtin/core-nodes/n8n-nodes-base.switch/"}]},"categories":["Core Nodes"],"nodeVersion":"1.0","codexVersion":"1.0","subcategories":{"Core Nodes":["Flow"]}}},"group":"[\"transform\"]","defaults":{"name":"Switch","color":"#506000"},"iconData":{"icon":"map-signs","type":"icon"},"displayName":"Switch","typeVersion":3,"nodeCategories":[{"id":9,"name":"Core Nodes"}]},{"id":487,"icon":"file:notion.svg","name":"n8n-nodes-base.notion","codex":{"data":{"resources":{"generic":[{"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 "}],"primaryDocumentation":[{"url":"https://docs.n8n.io/integrations/builtin/app-nodes/n8n-nodes-base.notion/"}],"credentialDocumentation":[{"url":"https://docs.n8n.io/integrations/builtin/credentials/notion/"}]},"categories":["Productivity"],"nodeVersion":"1.0","codexVersion":"1.0"}},"group":"[\"output\"]","defaults":{"name":"Notion"},"iconData":{"type":"file","fileBuffer":"data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNDAiIGhlaWdodD0iNDAiIHZpZXdCb3g9IjAgMCA0MCA0MCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik03LjU4Mjc2IDYuOTc2NzlDOC44MjA0NyA3Ljk4MjM4IDkuMjg0NzkgNy45MDU2NiAxMS42MDkxIDcuNzUwNTdMMzMuNTIwNiA2LjQzNDg4QzMzLjk4NTMgNi40MzQ4OCAzMy41OTg5IDUuOTcxMjcgMzMuNDQzOSA1Ljg5NDIzTDI5LjgwNDkgMy4yNjM0OEMyOS4xMDc2IDIuNzIyMTMgMjguMTc4NiAyLjEwMjE3IDI2LjM5ODIgMi4yNTcyNkw1LjE4MTE1IDMuODA0NzZDNC40MDczNiAzLjg4MTQ4IDQuMjUyODIgNC4yNjgzNyA0LjU2MDk2IDQuNTc4NDdMNy41ODI3NiA2Ljk3Njc5Wk04Ljg5ODI5IDEyLjA4MzNWMzUuMTM4MUM4Ljg5ODI5IDM2LjM3NzEgOS41MTc0NiAzNi44NDA3IDEwLjkxMSAzNi43NjRMMzQuOTkxOSAzNS4zNzA2QzM2LjM4NjIgMzUuMjkzOSAzNi41NDE1IDM0LjQ0MTcgMzYuNTQxNSAzMy40MzUyVjEwLjUzNTFDMzYuNTQxNSA5LjUzMDE5IDM2LjE1NDkgOC45ODgyOSAzNS4zMDE0IDkuMDY1NjRMMTAuMTM2NyAxMC41MzUxQzkuMjA3OTkgMTAuNjEzMSA4Ljg5ODIxIDExLjA3NzcgOC44OTgyMSAxMi4wODMzSDguODk4MjlaTTMyLjY3MDggMTMuMzJDMzIuODI1MiAxNC4wMTcgMzIuNjcwOCAxNC43MTMzIDMxLjk3MjUgMTQuNzkxN0wzMC44MTIzIDE1LjAyMjlWMzIuMDQzNEMyOS44MDQ5IDMyLjU4NDggMjguODc1OSAzMi44OTQ0IDI4LjEwMTggMzIuODk0NEMyNi44NjI1IDMyLjg5NDQgMjYuNTUyMSAzMi41MDcyIDI1LjYyMzcgMzEuMzQ3NEwxOC4wMzQzIDE5LjQzMjlWMzAuOTYwNUwyMC40MzU5IDMxLjUwMjRDMjAuNDM1OSAzMS41MDI0IDIwLjQzNTkgMzIuODk0NCAxOC40OTgzIDMyLjg5NDRMMTMuMTU2OCAzMy4yMDQyQzEzLjAwMTYgMzIuODk0NCAxMy4xNTY4IDMyLjEyMTQgMTMuNjk4NiAzMS45NjY1TDE1LjA5MjUgMzEuNTgwMlYxNi4zMzg1TDEzLjE1NzIgMTYuMTgzNEMxMy4wMDE5IDE1LjQ4NjQgMTMuMzg4NSAxNC40ODE0IDE0LjQ3MzMgMTQuNDAzNUwyMC4yMDM1IDE0LjAxNzJMMjguMTAxOCAyNi4wODY4VjE1LjQwOTdMMjYuMDg4MSAxNS4xNzg2QzI1LjkzMzUgMTQuMzI2NSAyNi41NTIxIDEzLjcwNzggMjcuMzI2NSAxMy42MzExTDMyLjY3MDggMTMuMzJaTTMuMzk5NzMgMS43MTU5OEwyNS40Njg4IDAuMDkwNzQ1N0MyOC4xNzkgLTAuMTQxNjg4IDI4Ljg3NjMgMC4wMTQwMjQ1IDMwLjU3OTYgMS4yNTEzNUwzNy42MjQzIDYuMjAyNzZDMzguNzg2NyA3LjA1NDIxIDM5LjE3NDIgNy4yODYwMiAzOS4xNzQyIDguMjE0MTlWMzUuMzcwNkMzOS4xNzQyIDM3LjA3MjYgMzguNTU0MiAzOC4wNzkxIDM2LjM4NjUgMzguMjMzMUwxMC43NTc3IDM5Ljc4MDdDOS4xMzA0OSAzOS44NTgzIDguMzU2MDcgMzkuNjI2NCA3LjUwMzkyIDM4LjU0MjZMMi4zMTYwOCAzMS44MTE3QzEuMzg2NTggMzAuNTcyNiAxIDI5LjY0NTcgMSAyOC41NjEzVjQuNDIyODNDMSAzLjAzMTA1IDEuNjIwMTkgMS44NzAwNSAzLjM5OTczIDEuNzE1OThWMS43MTU5OFoiIGZpbGw9ImJsYWNrIi8+Cjwvc3ZnPgo="},"displayName":"Notion","typeVersion":2,"nodeCategories":[{"id":4,"name":"Productivity"}]},{"id":535,"icon":"file:webhook.svg","name":"n8n-nodes-base.respondToWebhook","codex":{"data":{"resources":{"primaryDocumentation":[{"url":"https://docs.n8n.io/integrations/builtin/core-nodes/n8n-nodes-base.respondtowebhook/"}]},"categories":["Core Nodes","Utility"],"nodeVersion":"1.0","codexVersion":"1.0","subcategories":{"Core Nodes":["Helpers"]}}},"group":"[\"transform\"]","defaults":{"name":"Respond to Webhook"},"iconData":{"type":"file","fileBuffer":"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI0OCIgaGVpZ2h0PSI0OCI+PHBhdGggZmlsbD0iIzM3NDc0ZiIgZD0iTTM1IDM3Yy0yLjIgMC00LTEuOC00LTRzMS44LTQgNC00IDQgMS44IDQgNC0xLjggNC00IDQiLz48cGF0aCBmaWxsPSIjMzc0NzRmIiBkPSJNMzUgNDNjLTMgMC01LjktMS40LTcuOC0zLjdsMy4xLTIuNWMxLjEgMS40IDIuOSAyLjMgNC43IDIuMyAzLjMgMCA2LTIuNyA2LTZzLTIuNy02LTYtNmMtMSAwLTIgLjMtMi45LjdsLTEuNyAxTDIzLjMgMTZsMy41LTEuOSA1LjMgOS40YzEtLjMgMi0uNSAzLS41IDUuNSAwIDEwIDQuNSAxMCAxMFM0MC41IDQzIDM1IDQzIi8+PHBhdGggZmlsbD0iIzM3NDc0ZiIgZD0iTTE0IDQzQzguNSA0MyA0IDM4LjUgNCAzM2MwLTQuNiAzLjEtOC41IDcuNS05LjdsMSAzLjlDOS45IDI3LjkgOCAzMC4zIDggMzNjMCAzLjMgMi43IDYgNiA2czYtMi43IDYtNnYtMmgxNXY0SDIzLjhjLS45IDQuNi01IDgtOS44IDgiLz48cGF0aCBmaWxsPSIjZTkxZTYzIiBkPSJNMTQgMzdjLTIuMiAwLTQtMS44LTQtNHMxLjgtNCA0LTQgNCAxLjggNCA0LTEuOCA0LTQgNCIvPjxwYXRoIGZpbGw9IiMzNzQ3NGYiIGQ9Ik0yNSAxOWMtMi4yIDAtNC0xLjgtNC00czEuOC00IDQtNCA0IDEuOCA0IDQtMS44IDQtNCA0Ii8+PHBhdGggZmlsbD0iI2U5MWU2MyIgZD0ibTE1LjcgMzQtMy40LTIgNS45LTkuN2MtMi0xLjktMy4yLTQuNS0zLjItNy4zIDAtNS41IDQuNS0xMCAxMC0xMHMxMCA0LjUgMTAgMTBjMCAuOS0uMSAxLjctLjMgMi41bC0zLjktMWMuMS0uNS4yLTEgLjItMS41IDAtMy4zLTIuNy02LTYtNnMtNiAyLjctNiA2YzAgMi4xIDEuMSA0IDIuOSA1LjFsMS43IDF6Ii8+PC9zdmc+"},"displayName":"Respond to Webhook","typeVersion":2,"nodeCategories":[{"id":7,"name":"Utility"},{"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":838,"icon":"fa:mouse-pointer","name":"n8n-nodes-base.manualTrigger","codex":{"data":{"resources":{"generic":[],"primaryDocumentation":[{"url":"https://docs.n8n.io/integrations/builtin/core-nodes/n8n-nodes-base.manualworkflowtrigger/"}]},"categories":["Core Nodes"],"nodeVersion":"1.0","codexVersion":"1.0"}},"group":"[\"trigger\"]","defaults":{"name":"When clicking ‘Execute workflow’","color":"#909298"},"iconData":{"icon":"mouse-pointer","type":"icon"},"displayName":"Manual Trigger","typeVersion":1,"nodeCategories":[{"id":9,"name":"Core Nodes"}]}],"categories":[{"id":39,"name":"CRM"}],"image":[]}}