{
  "workflow": {
    "id": 9830,
    "name": "Sync Monday.com items to Jira with smart duplicate detection & feedback loop",
    "views": 81,
    "recentViews": 0,
    "totalViews": 81,
    "createdAt": "2025-10-17T12:21:50.612Z",
    "description": "## Description:\nBridge the gap between Monday.com and Jira with this intelligent n8n automation template.\n\nThe workflow listens for new or updated Monday.com items, normalizes data fields, and syncs them with your Jira backlog—automatically detecting duplicates using fuzzy matching logic. It then creates or updates Jira issues accordingly and logs the results back into Monday.com, ensuring your product and engineering teams stay aligned in real time.\nIdeal for project managers, product ops, and agile teams who manage intake in Monday.com but execute tasks in Jira.\n\n## ✅ What This Template Does (Step-by-Step)\n- 🌐 Webhook Trigger from Monday.com: Starts automatically whenever a new task or update occurs in Monday.com.\n- 🔄 Normalize Monday.com Data: Extracts and cleans key data fields such as summary, component, severity, and description for consistent formatting before sending to Jira.\n- 📊 Query Jira Backlog: Fetches all existing issues from Jira to establish a baseline for duplicate detection.\n- 🔍 Detect Duplicates with Fuzzy Matching: Compares Monday item titles with Jira summaries using character-level similarity (&gt;80% threshold) to detect potential duplicates even with minor variations.\n- ⚖️ Decision Gate: Duplicate or New: If duplicate found: updates the existing Jira issue with new data.\n- If no match: creates a new Jira task in the appropriate project and issue type.\n- 🔧 Update Existing Jira Issues: Automatically enhances Jira tickets with latest information from Monday.com including updated priority, description, and reference links.\n- ✨ Create New Jira Issues: For new requests, generates a Jira task with details mapped from Monday—complete with severity, component, and description.\n- 📝 Log Actions Back to Monday.com: Posts an update back to the originating Monday item confirming whether the action created or updated a Jira issue, including timestamp and Jira key link.\n- 📋 (Optional) Create New Monday Board: Can also auto-create a private board in Monday.com for project-specific task organization.\n\n## 🧠 Key Features\n 🔍 Smart fuzzy duplicate detection (&gt;80% match threshold)\n\n⚙️ Full bidirectional visibility between Monday.com and Jira\n 📢 Automatic task creation and update logic\n\n🧾 Real-time status logging and audit trail in Monday.com\n 🔐 Secure API-based connections for both platforms\n\n## 💼 Use Cases\n 💡 Sync product feedback and feature requests from Monday to Jira\n 🎯 Centralize intake forms and align engineering backlogs\n 🤝 Eliminate duplicate Jira issues from multiple product submissions\n 📈 Maintain transparent traceability across tools\n\n## 📦 Required Integrations\n- Monday.com API – for item intake and updates\n- Jira Software Cloud API – for issue creation and modification\n\n## 🎯 Why Use This Template?\n ✅ Eliminates duplicate Jira issues automatically\n\n✅ Keeps Monday.Com and Jira perfectly aligned\n ✅ Saves hours of manual task reconciliation\n ✅ Ideal for agile and cross-functional collaboration\n",
    "workflow": {
      "id": "HHGG8ayfMX7B8r9p",
      "meta": {
        "instanceId": "8443f10082278c46aa5cf3acf8ff0f70061a2c58bce76efac814b16290845177",
        "templateCredsSetupCompleted": true
      },
      "name": "Monday.com Intake → Jira Backlog Harmonizer",
      "tags": [],
      "nodes": [
        {
          "id": "45f009e0-33db-4c6f-a295-d6cf5c755664",
          "name": "Listen for Monday.com Webhook",
          "type": "n8n-nodes-base.webhook",
          "position": [
            -1904,
            752
          ],
          "webhookId": "76739f12-e0c0-48f8-ac17-6401f012e3a3",
          "parameters": {
            "path": "76739f12-e0c0-48f8-ac17-6401f012e3a3",
            "options": {}
          },
          "typeVersion": 2.1
        },
        {
          "id": "3be4baa8-90ac-49f1-8afb-f4ed9a906744",
          "name": "🚀 Workflow Overview",
          "type": "n8n-nodes-base.stickyNote",
          "position": [
            -2256,
            640
          ],
          "parameters": {
            "width": 280,
            "height": 320,
            "content": "🚀 WORKFLOW START\n\nThis workflow synchronizes tasks between Monday.com and Jira:\n\n• Receives webhook from Monday.com\n• Normalizes data fields\n• Checks for duplicates in Jira\n• Creates new issues or updates existing\n• Logs actions back to Monday.com\n• Keeps backlog in sync"
          },
          "typeVersion": 1
        },
        {
          "id": "111d4694-a01a-4189-ac6a-af3da8fecbd7",
          "name": "Normalize Monday Fields",
          "type": "n8n-nodes-base.function",
          "position": [
            -1664,
            752
          ],
          "parameters": {
            "functionCode": "return items.map(item => ({\n  json: {\n    summary: item.json.name.trim(),\n    component: item.json.column_values.find(c => c.id === 'component')?.text?.toLowerCase() || '',\n    severity: item.json.column_values.find(c => c.id === 'severity')?.text?.toUpperCase() || '',\n    description: item.json.column_values.find(c => c.id === 'description')?.text || 'No description',\n    mondayItemId: item.json.id\n  }\n}));"
          },
          "typeVersion": 1
        },
        {
          "id": "30e2fa62-db9e-4b2c-99d8-61a6779fca67",
          "name": "🔄 Normalize",
          "type": "n8n-nodes-base.stickyNote",
          "position": [
            -1792,
            400
          ],
          "parameters": {
            "width": 280,
            "height": 320,
            "content": "🔄 DATA NORMALIZATION\n\nExtracts and standardizes Monday.com data:\n\nFrom column_values:\n✓ summary: Item name (trimmed)\n✓ component: Component column (lowercase)\n✓ severity: Severity level (uppercase)\n✓ description: Full description text\n✓ mondayItemId: Original Monday ID\n\nTransforms unstructured data into clean fields for Jira integration"
          },
          "typeVersion": 1
        },
        {
          "id": "6d65b39b-53c6-452a-8f20-c9c9441b8620",
          "name": "Query Jira Backlog",
          "type": "n8n-nodes-base.jira",
          "position": [
            -1408,
            752
          ],
          "parameters": {
            "options": {},
            "operation": "getAll"
          },
          "credentials": {
            "jiraSoftwareCloudApi": {
              "id": "credential-id",
              "name": "jiraSoftwareCloudApi Credential"
            }
          },
          "typeVersion": 1
        },
        {
          "id": "1deddf13-0946-410c-8382-4060c168c63e",
          "name": "📊 Jira Search",
          "type": "n8n-nodes-base.stickyNote",
          "position": [
            -1536,
            928
          ],
          "parameters": {
            "width": 280,
            "height": 248,
            "content": "📊 JIRA SEARCH\n\nRetrieves all existing issues from Jira:\n\n• Uses Jira REST API\n• Fetches all issues (getAll)\n• Returns: issue keys, summaries, fields\n• Scans entire backlog\n\nUsed as baseline for duplicate detection"
          },
          "typeVersion": 1
        },
        {
          "id": "1be0064c-80c1-4ac4-940f-92a3c2bfb1fa",
          "name": "Detect Duplicates (Fuzzy Match)",
          "type": "n8n-nodes-base.function",
          "position": [
            -1152,
            752
          ],
          "parameters": {
            "functionCode": "function similarity(a, b) {\n  if (!a || !b) return 0;\n  const longer = a.length > b.length ? a : b;\n  const shorter = a.length > b.length ? b : a;\n  const longerLength = longer.length;\n  const same = longer.split('').filter((ch, i) => ch === shorter[i]).length;\n  return same / longerLength;\n}\n\nconst mondayTitle = $json.summary;\nconst matches = $items(\"Query Jira Backlog\").map(i => i.json.fields.summary);\n\nlet found = matches.find(jiraTitle => similarity(mondayTitle, jiraTitle) > 0.8);\nreturn [{ json: { duplicateFound: !!found, jiraMatch: found || null, summary: mondayTitle, component: $json.component, severity: $json.severity, description: $json.description, mondayItemId: $json.mondayItemId } }];"
          },
          "typeVersion": 1
        },
        {
          "id": "2f89cce7-8f05-45a6-8b7e-2a1609c24d22",
          "name": "🔍 Fuzzy Match",
          "type": "n8n-nodes-base.stickyNote",
          "position": [
            -1264,
            336
          ],
          "parameters": {
            "width": 280,
            "height": 372,
            "content": "🔍 FUZZY DUPLICATE DETECTION\n\nAlgorithm:\n• Compares Monday summary against all Jira titles\n• Character-level similarity matching\n• Threshold: > 80% match\n\nDetects:\n✓ Exact duplicates\n✓ Minor typos/variations\n✓ Rephrased titles\n\nReturns:\n• duplicateFound: true/false\n• jiraMatch: Matching title or null\n\nPrevents duplicate work items"
          },
          "typeVersion": 1
        },
        {
          "id": "f7defb99-5372-47b8-8dcd-71fdffbd50e8",
          "name": "Is Duplicate Found?",
          "type": "n8n-nodes-base.if",
          "position": [
            -912,
            752
          ],
          "parameters": {
            "conditions": {
              "boolean": [
                {
                  "value1": "={{$json.duplicateFound}}",
                  "value2": true
                }
              ]
            }
          },
          "typeVersion": 1
        },
        {
          "id": "c4be938b-ea49-42a3-a350-b39a9df1a6d3",
          "name": "⚖️ Decision Gate",
          "type": "n8n-nodes-base.stickyNote",
          "position": [
            -1024,
            928
          ],
          "parameters": {
            "width": 280,
            "height": 300,
            "content": "⚖️ DECISION GATE\n\nBranches based on duplicate status:\n\nIF duplicateFound = true:\n→ Route to \"Update Existing\"\n→ Merge with existing issue\n→ Avoid duplicates\n\nIF duplicateFound = false:\n→ Route to \"Create New\"\n→ Create fresh Jira issue\n→ Add to backlog"
          },
          "typeVersion": 1
        },
        {
          "id": "14c16881-d977-4cd3-a471-9c4c83d009c7",
          "name": "Update Jira Issue (Duplicate)",
          "type": "n8n-nodes-base.jira",
          "position": [
            -624,
            640
          ],
          "parameters": {
            "issueKey": "={{ $json.key }}",
            "operation": "update",
            "updateFields": {}
          },
          "credentials": {
            "jiraSoftwareCloudApi": {
              "id": "credential-id",
              "name": "jiraSoftwareCloudApi Credential"
            }
          },
          "typeVersion": 1
        },
        {
          "id": "fc34cee2-b64b-46c7-b3b5-920b9ef7ebbb",
          "name": "🔧 Update Existing",
          "type": "n8n-nodes-base.stickyNote",
          "position": [
            -768,
            304
          ],
          "parameters": {
            "width": 280,
            "height": 300,
            "content": "🔧 UPDATE EXISTING\n\nWhen duplicate detected:\n\n• Uses matched Jira issue key\n• Updates existing record\n• Adds new information\n• Increments counter\n• Preserves history\n\nFields updated:\n✓ Priority (from severity)\n✓ Component\n✓ Description\n✓ Comments (link to Monday)\n\nNo duplicate created"
          },
          "typeVersion": 1
        },
        {
          "id": "e4f538fb-c6e7-48b8-ac96-3d0443a79770",
          "name": "Create New Jira Issue",
          "type": "n8n-nodes-base.jira",
          "position": [
            -624,
            912
          ],
          "parameters": {
            "project": {
              "__rl": true,
              "mode": "list",
              "value": "10001",
              "cachedResultName": "Kanban"
            },
            "summary": "={{ $json.summary }}",
            "issueType": {
              "__rl": true,
              "mode": "list",
              "value": "10006",
              "cachedResultName": "Task"
            },
            "additionalFields": {}
          },
          "credentials": {
            "jiraSoftwareCloudApi": {
              "id": "credential-id",
              "name": "jiraSoftwareCloudApi Credential"
            }
          },
          "typeVersion": 1
        },
        {
          "id": "8bb7efe4-3bea-433b-82b2-2a8b6c97b2fe",
          "name": "✨ Create New",
          "type": "n8n-nodes-base.stickyNote",
          "position": [
            -704,
            1088
          ],
          "parameters": {
            "width": 280,
            "height": 300,
            "content": "✨ CREATE NEW\n\nWhen no duplicate found:\n\n• Creates new Jira issue\n• Project: Kanban (10001)\n• Issue Type: Task (10006)\n• Summary: From Monday title\n• Fields populated:\n  ✓ Component\n  ✓ Severity → Priority\n  ✓ Description\n  ✓ Monday link reference\n\nIssue added to backlog"
          },
          "typeVersion": 1
        },
        {
          "id": "982e09b8-dd7a-4403-9350-3f36bdc45f0c",
          "name": "Update Monday Item (Log Action)",
          "type": "n8n-nodes-base.mondayCom",
          "position": [
            -400,
            912
          ],
          "parameters": {
            "value": "={{ $json.text }}",
            "itemId": "={{ $json.id }}",
            "resource": "boardItem",
            "operation": "addUpdate"
          },
          "credentials": {
            "mondayComApi": {
              "id": "credential-id",
              "name": "mondayComApi Credential"
            }
          },
          "typeVersion": 1
        },
        {
          "id": "39f2d6f0-c84c-45b4-9628-8691376f71ea",
          "name": "📝 Log to Monday",
          "type": "n8n-nodes-base.stickyNote",
          "position": [
            -224,
            1056
          ],
          "parameters": {
            "width": 280,
            "height": 300,
            "content": "📝 LOG BACK TO MONDAY\n\nAfter Jira action completed:\n\n• Adds update to Monday item\n• Documents:\n  ✓ Action taken (created/updated)\n  ✓ Jira issue key\n  ✓ Timestamp\n  ✓ Status\n\nCreates audit trail\nSyncronizes status bidirectionally\nTeam sees Jira confirmation in Monday"
          },
          "typeVersion": 1
        },
        {
          "id": "3707e0dd-90bf-47ff-931e-ea55bbc5004c",
          "name": "Create Monday Board",
          "type": "n8n-nodes-base.mondayCom",
          "position": [
            -400,
            640
          ],
          "parameters": {
            "kind": "private",
            "name": "={{ $json.name }}",
            "additionalFields": {}
          },
          "credentials": {
            "mondayComApi": {
              "id": "credential-id",
              "name": "mondayComApi Credential"
            }
          },
          "typeVersion": 1
        },
        {
          "id": "6eb9c805-91d0-4e34-9713-792fac117629",
          "name": "📋 Create Board",
          "type": "n8n-nodes-base.stickyNote",
          "position": [
            -208,
            560
          ],
          "parameters": {
            "width": 280,
            "height": 300,
            "content": "📋 OPTIONAL: CREATE BOARD\n\nCan create new Monday.com board:\n• Project name from Jira\n• Private board\n• For team collaboration\n\nNote: This node appears unused in current flow\nCan be utilized for advanced scenarios\nExample: Auto-create board per Jira project"
          },
          "typeVersion": 1
        }
      ],
      "active": false,
      "pinData": {},
      "settings": {
        "executionOrder": "v1"
      },
      "versionId": "3788c8fe-da28-419d-82f7-ccaec22e4d5e",
      "connections": {
        "Query Jira Backlog": {
          "main": [
            [
              {
                "node": "Detect Duplicates (Fuzzy Match)",
                "type": "main",
                "index": 0
              }
            ]
          ]
        },
        "Is Duplicate Found?": {
          "main": [
            [
              {
                "node": "Update Jira Issue (Duplicate)",
                "type": "main",
                "index": 0
              }
            ],
            [
              {
                "node": "Create New Jira Issue",
                "type": "main",
                "index": 0
              }
            ]
          ]
        },
        "Create New Jira Issue": {
          "main": [
            [
              {
                "node": "Update Monday Item (Log Action)",
                "type": "main",
                "index": 0
              }
            ]
          ]
        },
        "Normalize Monday Fields": {
          "main": [
            [
              {
                "node": "Query Jira Backlog",
                "type": "main",
                "index": 0
              }
            ]
          ]
        },
        "Listen for Monday.com Webhook": {
          "main": [
            [
              {
                "node": "Normalize Monday Fields",
                "type": "main",
                "index": 0
              }
            ]
          ]
        },
        "Update Jira Issue (Duplicate)": {
          "main": [
            [
              {
                "node": "Create Monday Board",
                "type": "main",
                "index": 0
              }
            ]
          ]
        },
        "Detect Duplicates (Fuzzy Match)": {
          "main": [
            [
              {
                "node": "Is Duplicate Found?",
                "type": "main",
                "index": 0
              }
            ]
          ]
        }
      }
    },
    "lastUpdatedBy": 1,
    "workflowInfo": {
      "nodeCount": 18,
      "nodeTypes": {
        "n8n-nodes-base.if": {
          "count": 1
        },
        "n8n-nodes-base.jira": {
          "count": 3
        },
        "n8n-nodes-base.webhook": {
          "count": 1
        },
        "n8n-nodes-base.function": {
          "count": 2
        },
        "n8n-nodes-base.mondayCom": {
          "count": 2
        },
        "n8n-nodes-base.stickyNote": {
          "count": 9
        }
      }
    },
    "status": "published",
    "user": {
      "name": "Rahul Joshi",
      "username": "rahul08",
      "bio": "Rahul Joshi is a seasoned technology leader specializing in the n8n automation tool and AI-driven workflow automation. With deep expertise in building open-source workflow automation and self-hosted automation platforms, he helps organizations eliminate manual processes through intelligent n8n ai agent automation solutions.\n\n",
      "verified": true,
      "links": [
        "https://www.linkedin.com/in/callrahul/"
      ],
      "avatar": "https://gravatar.com/avatar/b6cf57822463143589b36ada06fbf6cb1509223a740fae3160b28f1ce41ccc12?r=pg&d=retro&size=200"
    },
    "nodes": [
      {
        "id": 14,
        "icon": "fa:code",
        "name": "n8n-nodes-base.function",
        "codex": {
          "data": {
            "alias": [
              "Code",
              "Javascript",
              "Custom Code",
              "Script",
              "cpde"
            ],
            "details": "The Function node allows you to execute JavaScript in your workflow. Unlike the Function Item node, this node does not operate on incoming node data per-item. Instead, you must iterate over multiple items of incoming data yourself. This can be useful if you're performing data transformation where you want to manipulate the number of items being outputted by the node (i.e. 1 item is inputted in with nested object, 10 items are outputted without any nested objects)",
            "resources": {
              "generic": [
                {
                  "url": "https://n8n.io/blog/2021-goals-level-up-your-vocabulary-with-vonage-and-n8n/",
                  "icon": "🎯",
                  "label": "2021 Goals: Level Up Your Vocabulary With Vonage and n8n"
                },
                {
                  "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/why-i-chose-n8n-over-zapier-in-2020/",
                  "icon": "😍",
                  "label": "Why I chose n8n over Zapier in 2020"
                },
                {
                  "url": "https://n8n.io/blog/how-to-host-virtual-coffee-breaks-with-n8n/",
                  "icon": "☕️",
                  "label": "How to host virtual coffee breaks 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/supercharging-your-conference-registration-process-with-n8n/",
                  "icon": "🎫",
                  "label": "Supercharging your conference registration process with n8n"
                },
                {
                  "url": "https://n8n.io/blog/creating-triggers-for-n8n-workflows-using-polling/",
                  "icon": "⏲",
                  "label": "Creating triggers for n8n workflows using polling"
                },
                {
                  "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/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/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/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/tracking-time-spent-in-meetings-with-google-calendar-twilio-and-n8n/",
                  "icon": "🗓",
                  "label": "Tracking Time Spent in Meetings With Google Calendar, Twilio, and n8n"
                },
                {
                  "url": "https://n8n.io/blog/creating-error-workflows-in-n8n/",
                  "icon": "🌪",
                  "label": "Creating Error Workflows in 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-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/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.code/"
                }
              ]
            },
            "categories": [
              "Development",
              "Core Nodes"
            ],
            "nodeVersion": "1.0",
            "codexVersion": "1.0",
            "subcategories": {
              "Core Nodes": [
                "Data Transformation"
              ]
            }
          }
        },
        "group": "[\"transform\"]",
        "defaults": {
          "name": "Function",
          "color": "#FF9922"
        },
        "iconData": {
          "icon": "code",
          "type": "icon"
        },
        "displayName": "Function",
        "typeVersion": 1,
        "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": 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": 77,
        "icon": "file:jira.svg",
        "name": "n8n-nodes-base.jira",
        "codex": {
          "data": {
            "resources": {
              "generic": [
                {
                  "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/creating-custom-incident-response-workflows-with-n8n/",
                  "label": "How to automate every step of an incident response workflow"
                }
              ],
              "primaryDocumentation": [
                {
                  "url": "https://docs.n8n.io/integrations/builtin/app-nodes/n8n-nodes-base.jira/"
                }
              ],
              "credentialDocumentation": [
                {
                  "url": "https://docs.n8n.io/integrations/builtin/credentials/jira/"
                }
              ]
            },
            "categories": [
              "Development",
              "Productivity"
            ],
            "nodeVersion": "1.0",
            "codexVersion": "1.0"
          }
        },
        "group": "[\"output\"]",
        "defaults": {
          "name": "Jira Software"
        },
        "iconData": {
          "type": "file",
          "fileBuffer": "data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiBmaWxsPSIjZmZmIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiIHN0cm9rZT0iIzAwMCIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIiBzdHJva2UtbGluZWpvaW49InJvdW5kIiB2aWV3Qm94PSIwIDAgNjguMjUgNzEuMjUiPjx1c2UgeGxpbms6aHJlZj0iI2EiIHg9IjMuMTI1IiB5PSIzLjEyNSIvPjxkZWZzPjxsaW5lYXJHcmFkaWVudCBpZD0iYiIgeDE9IjkxLjklIiB4Mj0iMjguNDklIiB5MT0iNDAuMjIlIiB5Mj0iODEuNjMlIj48c3RvcCBvZmZzZXQ9IjE4JSIgc3RvcC1jb2xvcj0iIzAwNTJjYyIvPjxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0iIzI2ODRmZiIvPjwvbGluZWFyR3JhZGllbnQ+PGxpbmVhckdyYWRpZW50IGlkPSJjIiB4MT0iOC43JSIgeDI9IjcyLjI2JSIgeTE9IjU5LjE3JSIgeTI9IjE3Ljk5JSI+PHN0b3Agb2Zmc2V0PSIxOCUiIHN0b3AtY29sb3I9IiMwMDUyY2MiLz48c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiMyNjg0ZmYiLz48L2xpbmVhckdyYWRpZW50PjwvZGVmcz48c3ltYm9sIGlkPSJhIiBvdmVyZmxvdz0idmlzaWJsZSI+PGcgZmlsbC1ydWxlPSJub256ZXJvIiBzdHJva2U9Im5vbmUiPjxwYXRoIGZpbGw9IiMyNjg0ZmYiIGQ9Ik02MS4xNjEgMzAuMjExIDMwLjk1IDAgLjc0IDMwLjIxMWEyLjU0IDIuNTQgMCAwIDAgMCAzLjU4MWwzMC4yMTEgMzAuMjEgMzAuMjExLTMwLjIxYTIuNTQgMi41NCAwIDAgMCAwLTMuNTgxek0zMC45NSA0MS40NmwtOS40NjItOS40NjIgOS40NjItOS40NjIgOS40NjIgOS40NjJ6Ii8+PHBhdGggZmlsbD0idXJsKCNiKSIgZD0iTTMwLjk1IDIyLjU5OUMyNC43NTUgMTYuNDA1IDI0LjcyNCA2LjM3IDMwLjg4MS4xMzhMMTAuMTE0IDIwLjc3NGwxMS4yNjggMTEuMjY4eiIvPjxwYXRoIGZpbGw9InVybCgjYykiIGQ9Ik00MC40MzcgMzEuOTczIDMwLjk1IDQxLjQ2YTE1LjkzIDE1LjkzIDAgMCAxIDAgMjIuNTM2bDIwLjc0OS0yMC43NDl6Ii8+PC9nPjwvc3ltYm9sPjwvc3ZnPg=="
        },
        "displayName": "Jira Software",
        "typeVersion": 1,
        "nodeCategories": [
          {
            "id": 4,
            "name": "Productivity"
          },
          {
            "id": 5,
            "name": "Development"
          }
        ]
      },
      {
        "id": 309,
        "icon": "file:mondayCom.svg",
        "name": "n8n-nodes-base.mondayCom",
        "codex": {
          "data": {
            "resources": {
              "primaryDocumentation": [
                {
                  "url": "https://docs.n8n.io/integrations/builtin/app-nodes/n8n-nodes-base.mondaycom/"
                }
              ],
              "credentialDocumentation": [
                {
                  "url": "https://docs.n8n.io/integrations/builtin/credentials/mondaycom/"
                }
              ]
            },
            "categories": [
              "Productivity"
            ],
            "nodeVersion": "1.0",
            "codexVersion": "1.0"
          }
        },
        "group": "[\"output\"]",
        "defaults": {
          "name": "Monday.com"
        },
        "iconData": {
          "type": "file",
          "fileBuffer": "data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI2MCIgaGVpZ2h0PSI2MCI+PGcgZmlsbD0ibm9uZSIgZmlsbC1ydWxlPSJldmVub2RkIiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS1saW5lam9pbj0icm91bmQiPjxwYXRoIGZpbGw9IiNGRjNENTciIGQ9Ik04LjE4NCA0Ny4zOTNBNy4yIDcuMiAwIDAgMSAxLjkgNDMuNjc0YTcuMjIgNy4yMiAwIDAgMSAuMTk2LTcuMzA3bDEyLjk0NS0yMC43M2E3LjE4IDcuMTggMCAwIDEgNi4zNTYtMy4zNzYgNy4yIDcuMiAwIDAgMSA2LjA5NyAzLjgyNCA3LjIxIDcuMjEgMCAwIDEtLjI1OCA3LjJsLTEyLjk1IDIwLjcyN2E3LjE5IDcuMTkgMCAwIDEtNi4xMDMgMy4zNzl6Ii8+PHBhdGggZmlsbD0iI0ZGQ0IwMCIgZD0iTTMwLjQ5NCA0Ny4zOTNhNy4yIDcuMiAwIDAgMS02LjI5NS0zLjcxMyA3LjIxIDcuMjEgMCAwIDEgLjE5NC03LjMxM2wxMi45NTQtMjAuNzNhNy4xNyA3LjE3IDAgMCAxIDYuNDExLTMuNjM0QTcuMTkgNy4xOSAwIDAgMSA1MCAxNS45MjNhNy4yMSA3LjIxIDAgMCAxLS40NzYgNy4zNmwtMTIuOTMgMjAuNzNhNy4xOSA3LjE5IDAgMCAxLTYuMTAyIDMuMzc4bC4wMDMuMDAyeiIvPjxwYXRoIGZpbGw9IiMwMEQ2NDciIGQ9Ik00NS41OTEgNDAuMzU3YzAtMy44OTUgMy4yMTQtNy4wMzQgNy4yMDUtNy4wMzRTNjAgMzYuNDYgNjAgNDAuMzU3cy0zLjIxNCA3LjAzNC03LjIwNCA3LjAzNGMtMy45OTEgMC03LjIwNS0zLjEzNy03LjIwNS03LjAzNCIvPjwvZz48L3N2Zz4="
        },
        "displayName": "Monday.com",
        "typeVersion": 1,
        "nodeCategories": [
          {
            "id": 4,
            "name": "Productivity"
          }
        ]
      },
      {
        "id": 565,
        "icon": "fa:sticky-note",
        "name": "n8n-nodes-base.stickyNote",
        "codex": {
          "data": {
            "alias": [
              "Comments",
              "Notes",
              "Sticky"
            ],
            "categories": [
              "Core Nodes"
            ],
            "nodeVersion": "1.0",
            "codexVersion": "1.0",
            "subcategories": {
              "Core Nodes": [
                "Helpers"
              ]
            }
          }
        },
        "group": "[\"input\"]",
        "defaults": {
          "name": "Sticky Note",
          "color": "#FFD233"
        },
        "iconData": {
          "icon": "sticky-note",
          "type": "icon"
        },
        "displayName": "Sticky Note",
        "typeVersion": 1,
        "nodeCategories": [
          {
            "id": 9,
            "name": "Core Nodes"
          }
        ]
      }
    ],
    "categories": [
      {
        "id": 46,
        "name": "Project Management"
      }
    ],
    "image": []
  }
}