{
  "workflow": {
    "id": 6263,
    "name": "Monitor Amadeus & Booking.com API health with WhatsApp SLA alerts",
    "views": 350,
    "recentViews": 0,
    "totalViews": 350,
    "createdAt": "2025-07-22T09:31:03.718Z",
    "description": "This guide details the setup and functionality of an automated workflow designed to monitor the health, uptime, and SLA compliance of travel supplier APIs, specifically the Amadeus Flight API and Booking.com Hotel API. The workflow runs every 10 minutes, processes health and SLA data, and sends alerts or logs based on the status.\n\n## What It Monitors\n- **API Health**: UP/DOWN status with health indicators.\n- **Uptime Tracking**: Real-time availability percentage.\n- **SLA Compliance**: Automatic breach detection and alerts.\n- **Performance Rating**: Classified as EXCELLENT, GOOD, AVERAGE, or POOR.\n\n## Features\n- Runs every 10 minutes automatically.\n- Monitors the Amadeus Flight API with a 99.5% SLA target.\n- Monitors the Booking.com Hotel API with a 99.0% SLA target.\n- Smart Alerts that notify via WhatsApp only on SLA breaches.\n- Logging of results for both breaches and normal status.\n\n## Workflow Steps\n- **Monitor Schedule**: Triggers the workflow every 10 minutes automatically.\n- **Amadeus Flight API**: Tests the Amadeus Flight API (GET: https://api.amadeus.com) simultaneously.\n- **Booking Hotel API**: Tests the Booking.com Hotel API (GET: https://distribution-xml.booking.com) simultaneously.\n- **Calculate Health & SLA**: Processes health, uptime, and SLA data.\n- **Alert Check**: Routes to appropriate responses based on breach status.\n- **SLA Breach Alert**: Sends an alert with throwError if an SLA breach occurs.\n- **Normal Status Log**: Records results with throwError for healthy status.\n- **Send Message**: Sends a WhatsApp message for breach alerts.\n\n## How to Use\n1. Copy the JSON configuration of the workflow.\n2. Import it into your n8n workspace.\n3. Activate the workflow.\n4. Monitor results in the execution logs and WhatsApp notifications.\n\nThe workflow will automatically start tracking your travel suppliers and alert you via WhatsApp only when SLA thresholds are breached. Please double-check responses to ensure accuracy.\n\n## Requirements\n- n8n account and instance setup.\n- API credentials for Amadeus Flight API (e.g., https://api.amadeus.com).\n- API credentials for Booking.com Hotel API (e.g., https://distribution-xml.booking.com).\n- WhatsApp integration for sending alerts.\n\n## Customizing this Workflow\n- Adjust the **Monitor Schedule** interval to change the frequency (e.g., every 5 or 15 minutes).\n- Modify SLA targets in the **Calculate Health & SLA** node to align with your service agreements (e.g., 99.9% for Amadeus).\n- Update API endpoints or credentials in the **Amadeus Flight API** and **Booking Hotel API** nodes for different suppliers.\n- Customize the **Send Message** node to integrate with other messaging platforms (e.g., Slack, email).\n- Enhance the **Normal Status Log** to include additional metrics or export logs to a database.",
    "workflow": {
      "id": "T3nT9lGG91jxyLsK",
      "meta": {
        "instanceId": "dd69efaf8212c74ad206700d104739d3329588a6f3f8381a46a481f34c9cc281",
        "templateCredsSetupCompleted": true
      },
      "name": "Travel Supplier Monitor: Track API Health, Uptime & SLA Compliance Automatically",
      "tags": [],
      "nodes": [
        {
          "id": "2a498c6b-abc3-46dd-8acc-5ee0c24570d3",
          "name": "Monitor Schedule",
          "type": "n8n-nodes-base.scheduleTrigger",
          "position": [
            -1740,
            -380
          ],
          "parameters": {
            "rule": {
              "interval": [
                {
                  "field": "minutes",
                  "minutesInterval": 10
                }
              ]
            }
          },
          "typeVersion": 1.1
        },
        {
          "id": "677cb112-dc2f-43e6-b1ee-68728d8ae773",
          "name": "Amadeus Flight API",
          "type": "n8n-nodes-base.httpRequest",
          "position": [
            -1520,
            -480
          ],
          "parameters": {
            "url": "https://api.amadeus.com/v1/reference-data/airlines",
            "options": {
              "timeout": 8000,
              "response": {
                "response": {
                  "fullResponse": true,
                  "responseFormat": "json"
                }
              }
            },
            "sendHeaders": true,
            "headerParameters": {
              "parameters": [
                {
                  "name": "User-Agent",
                  "value": "TravelMonitor/1.0"
                }
              ]
            }
          },
          "typeVersion": 4.1
        },
        {
          "id": "d4fc7dbe-d36d-49cb-bab0-25bce07ea6be",
          "name": "Booking Hotel API",
          "type": "n8n-nodes-base.httpRequest",
          "position": [
            -1520,
            -280
          ],
          "parameters": {
            "url": "https://distribution-xml.booking.com/",
            "options": {
              "timeout": 8000,
              "response": {
                "response": {
                  "fullResponse": true,
                  "responseFormat": "json"
                }
              }
            },
            "sendHeaders": true,
            "headerParameters": {
              "parameters": [
                {
                  "name": "User-Agent",
                  "value": "TravelMonitor/1.0"
                }
              ]
            }
          },
          "typeVersion": 4.1
        },
        {
          "id": "ffe8eb40-5fa7-4d7c-8055-2c6aa780d209",
          "name": "Calculate Health & SLA",
          "type": "n8n-nodes-base.code",
          "position": [
            -1300,
            -380
          ],
          "parameters": {
            "jsCode": "const items = $input.all();\nconst timestamp = new Date().toISOString();\nconst results = [];\n\n// Supplier configurations\nconst suppliers = [\n  { name: 'Amadeus', type: 'Flight API', slaTarget: 99.5 },\n  { name: 'Booking.com', type: 'Hotel API', slaTarget: 99.0 }\n];\n\nfor (let i = 0; i < items.length; i++) {\n  const item = items[i].json;\n  const supplier = suppliers[i];\n  const statusCode = item.statusCode || 0;\n  const isHealthy = statusCode >= 200 && statusCode < 300;\n  const responseTime = item.headers ? 200 : 5000; // Simulated\n  \n  // Calculate uptime percentage (simplified)\n  const uptimePercentage = isHealthy ? 100 : 0;\n  \n  // SLA compliance check\n  const slaCompliant = uptimePercentage >= supplier.slaTarget;\n  const slaStatus = slaCompliant ? '✅ COMPLIANT' : '❌ BREACH';\n  \n  // Health status\n  const healthStatus = isHealthy ? '🟢 HEALTHY' : '🔴 DOWN';\n  \n  // Performance rating\n  let performance;\n  if (responseTime < 500 && isHealthy) performance = '⚡ EXCELLENT';\n  else if (responseTime < 2000 && isHealthy) performance = '✅ GOOD';\n  else if (responseTime < 5000 && isHealthy) performance = '⚠️ AVERAGE';\n  else performance = '❌ POOR';\n  \n  results.push({\n    supplier_name: supplier.name,\n    api_type: supplier.type,\n    timestamp: timestamp,\n    status_code: statusCode,\n    health_status: healthStatus,\n    is_healthy: isHealthy,\n    response_time_ms: responseTime,\n    uptime_percentage: uptimePercentage,\n    sla_target: supplier.slaTarget,\n    sla_status: slaStatus,\n    sla_compliant: slaCompliant,\n    performance_rating: performance,\n    alert_required: !slaCompliant\n  });\n}\n\nreturn results;"
          },
          "typeVersion": 2
        },
        {
          "id": "9959f0f0-1954-4e0d-951b-e927c76f1105",
          "name": "Alert Check",
          "type": "n8n-nodes-base.if",
          "position": [
            -1080,
            -380
          ],
          "parameters": {
            "options": {},
            "conditions": {
              "options": {
                "leftValue": "",
                "caseSensitive": true,
                "typeValidation": "strict"
              },
              "combinator": "or",
              "conditions": [
                {
                  "id": "condition1",
                  "operator": {
                    "type": "boolean",
                    "operation": "true"
                  },
                  "leftValue": "={{ $json.alert_required }}",
                  "rightValue": true
                }
              ]
            }
          },
          "typeVersion": 2
        },
        {
          "id": "264ce28a-d467-4c86-8e61-1bc9df4e3083",
          "name": "SLA Breach Alert",
          "type": "n8n-nodes-base.debugHelper",
          "position": [
            -860,
            -480
          ],
          "parameters": {},
          "typeVersion": 1
        },
        {
          "id": "50c22357-03a5-480e-9577-642056a97aaa",
          "name": "Normal Status Log",
          "type": "n8n-nodes-base.debugHelper",
          "position": [
            -860,
            -280
          ],
          "parameters": {},
          "typeVersion": 1
        },
        {
          "id": "25b1db91-172f-44fc-aee7-b156ae64d486",
          "name": "Sticky Note",
          "type": "n8n-nodes-base.stickyNote",
          "position": [
            -1765,
            -480
          ],
          "parameters": {
            "color": 3,
            "width": 150,
            "height": 260,
            "content": "Runs every 10 minutes automatically."
          },
          "typeVersion": 1
        },
        {
          "id": "f4710764-e7a0-4775-b09e-d8f67babd434",
          "name": "Sticky Note1",
          "type": "n8n-nodes-base.stickyNote",
          "position": [
            -1105,
            -480
          ],
          "parameters": {
            "color": 4,
            "width": 150,
            "height": 260,
            "content": "Routes to appropriate responses based on breach status."
          },
          "typeVersion": 1
        },
        {
          "id": "0f7024e0-bddd-4433-a2f9-c83d53c25fba",
          "name": "Sticky Note2",
          "type": "n8n-nodes-base.stickyNote",
          "position": [
            -1325,
            -480
          ],
          "parameters": {
            "color": 5,
            "width": 150,
            "height": 260,
            "content": "Processes health, uptime, and SLA data."
          },
          "typeVersion": 1
        },
        {
          "id": "efbc2758-2168-4f75-aeed-6036281a4bfd",
          "name": "Sticky Note4",
          "type": "n8n-nodes-base.stickyNote",
          "position": [
            -885,
            -660
          ],
          "parameters": {
            "color": 2,
            "width": 150,
            "height": 540,
            "content": "Records results, with alerts for breaches and normal logs for healthy status."
          },
          "typeVersion": 1
        },
        {
          "id": "09e1b313-1b20-456c-818a-a4523a443fb3",
          "name": "Sticky Note5",
          "type": "n8n-nodes-base.stickyNote",
          "position": [
            -1545,
            -660
          ],
          "parameters": {
            "width": 150,
            "height": 540,
            "content": "Tests both the Amadeus Flight API and Booking.com Hotel API simultaneously."
          },
          "typeVersion": 1
        },
        {
          "id": "d21648ba-de83-47fc-bc79-f6c1e87440c5",
          "name": "Send message",
          "type": "n8n-nodes-base.whatsApp",
          "position": [
            -640,
            -380
          ],
          "webhookId": "8a315367-f3a0-4c84-903a-5a1f708960a7",
          "parameters": {
            "textBody": "{{json.logs}}",
            "operation": "send",
            "phoneNumberId": "=+91999876667877",
            "additionalFields": {},
            "recipientPhoneNumber": "+1234567890"
          },
          "credentials": {
            "whatsAppApi": {
              "id": "credential-id",
              "name": "whatsAppApi Credential"
            }
          },
          "typeVersion": 1
        },
        {
          "id": "f9e4e3f9-2cdf-406e-aed1-1bd4358852cb",
          "name": "Sticky Note3",
          "type": "n8n-nodes-base.stickyNote",
          "position": [
            -660,
            -480
          ],
          "parameters": {
            "color": 6,
            "width": 150,
            "height": 260,
            "content": "Sends a WhatsApp message for breach alerts."
          },
          "typeVersion": 1
        }
      ],
      "active": false,
      "pinData": {},
      "settings": {
        "executionOrder": "v1"
      },
      "versionId": "d4c14b4f-2bee-4cae-a443-49a0f6a2fff6",
      "connections": {
        "Alert Check": {
          "main": [
            [
              {
                "node": "SLA Breach Alert",
                "type": "main",
                "index": 0
              }
            ],
            [
              {
                "node": "Normal Status Log",
                "type": "main",
                "index": 0
              }
            ]
          ]
        },
        "Monitor Schedule": {
          "main": [
            [
              {
                "node": "Amadeus Flight API",
                "type": "main",
                "index": 0
              },
              {
                "node": "Booking Hotel API",
                "type": "main",
                "index": 0
              }
            ]
          ]
        },
        "SLA Breach Alert": {
          "main": [
            [
              {
                "node": "Send message",
                "type": "main",
                "index": 0
              }
            ]
          ]
        },
        "Booking Hotel API": {
          "main": [
            [
              {
                "node": "Calculate Health & SLA",
                "type": "main",
                "index": 0
              }
            ]
          ]
        },
        "Normal Status Log": {
          "main": [
            [
              {
                "node": "Send message",
                "type": "main",
                "index": 0
              }
            ]
          ]
        },
        "Amadeus Flight API": {
          "main": [
            [
              {
                "node": "Calculate Health & SLA",
                "type": "main",
                "index": 0
              }
            ]
          ]
        },
        "Calculate Health & SLA": {
          "main": [
            [
              {
                "node": "Alert Check",
                "type": "main",
                "index": 0
              }
            ]
          ]
        }
      }
    },
    "lastUpdatedBy": 29,
    "workflowInfo": {
      "nodeCount": 14,
      "nodeTypes": {
        "n8n-nodes-base.if": {
          "count": 1
        },
        "n8n-nodes-base.code": {
          "count": 1
        },
        "n8n-nodes-base.whatsApp": {
          "count": 1
        },
        "n8n-nodes-base.stickyNote": {
          "count": 6
        },
        "n8n-nodes-base.debugHelper": {
          "count": 2
        },
        "n8n-nodes-base.httpRequest": {
          "count": 2
        },
        "n8n-nodes-base.scheduleTrigger": {
          "count": 1
        }
      }
    },
    "status": "published",
    "user": {
      "name": "Oneclick AI Squad",
      "username": "oneclick-ai",
      "bio": "The AI Squad Initiative is a pioneering effort to build, automate and scale AI-powered workflows using n8n.io. Our mission is to help individuals and businesses integrate AI agents seamlessly into their daily operations  from automating tasks and enhancing productivity to creating innovative, intelligent solutions. We design modular, reusable AI workflow templates that empower creators, developers and teams to supercharge their automation with minimal effort and maximum impact.",
      "verified": true,
      "links": [
        "https://www.oneclickitsolution.com/"
      ],
      "avatar": "https://gravatar.com/avatar/848fca91367142f65f9e5c55d64e5c9952b160d7b060d103b52aa343c6bc7b3d?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": 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": 827,
        "icon": "file:whatsapp.svg",
        "name": "n8n-nodes-base.whatsApp",
        "codex": {
          "data": {
            "resources": {
              "primaryDocumentation": [
                {
                  "url": "https://docs.n8n.io/integrations/builtin/app-nodes/n8n-nodes-base.whatsapp/"
                }
              ],
              "credentialDocumentation": [
                {
                  "url": "https://docs.n8n.io/integrations/builtin/credentials/whatsapp/"
                }
              ]
            },
            "categories": [
              "Communication",
              "HITL"
            ],
            "nodeVersion": "1.0",
            "codexVersion": "1.0",
            "subcategories": {
              "HITL": [
                "Human in the Loop"
              ]
            }
          }
        },
        "group": "[\"output\"]",
        "defaults": {
          "name": "WhatsApp Business Cloud"
        },
        "iconData": {
          "type": "file",
          "fileBuffer": "data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI2MCIgaGVpZ2h0PSI2MCIgZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIHZpZXdCb3g9IjAgMCA0OCA0OCI+PHBhdGggZmlsbD0iI2ZmZiIgZD0ibTQuODY4IDQzLjMwMyAyLjY5NC05LjgzNWExOC45NCAxOC45NCAwIDAgMS0yLjUzNS05LjQ4OUM1LjAzMiAxMy41MTQgMTMuNTQ4IDUgMjQuMDE0IDVhMTguODcgMTguODcgMCAwIDEgMTMuNDMgNS41NjZBMTguODcgMTguODcgMCAwIDEgNDMgMjMuOTk0Yy0uMDA0IDEwLjQ2NS04LjUyMiAxOC45OC0xOC45ODYgMTguOThoLS4wMDhhMTkgMTkgMCAwIDEtOS4wNzMtMi4zMTF6Ii8+PHBhdGggZmlsbD0iI2ZmZiIgZD0iTTQuODY4IDQzLjgwM2EuNS41IDAgMCAxLS40ODItLjYzMWwyLjYzOS05LjYzNmExOS41IDE5LjUgMCAwIDEtMi40OTctOS41NTZDNC41MzIgMTMuMjM4IDEzLjI3MyA0LjUgMjQuMDE0IDQuNWExOS4zNyAxOS4zNyAwIDAgMSAxMy43ODQgNS43MTNBMTkuMzYgMTkuMzYgMCAwIDEgNDMuNSAyMy45OTRjLS4wMDQgMTAuNzQxLTguNzQ2IDE5LjQ4LTE5LjQ4NiAxOS40OGExOS41NCAxOS41NCAwIDAgMS05LjE0NC0yLjI3N2wtOS44NzUgMi41ODlhLjUuNSAwIDAgMS0uMTI3LjAxNyIvPjxwYXRoIGZpbGw9IiNjZmQ4ZGMiIGQ9Ik0yNC4wMTQgNWExOC44NyAxOC44NyAwIDAgMSAxMy40MyA1LjU2NkExOC44NyAxOC44NyAwIDAgMSA0MyAyMy45OTRjLS4wMDQgMTAuNDY1LTguNTIyIDE4Ljk4LTE4Ljk4NiAxOC45OGgtLjAwOGExOSAxOSAwIDAgMS05LjA3My0yLjMxMWwtMTAuMDY1IDIuNjQgMi42OTQtOS44MzVhMTguOTQgMTguOTQgMCAwIDEtMi41MzUtOS40ODlDNS4wMzIgMTMuNTE0IDEzLjU0OCA1IDI0LjAxNCA1bTAtMUMxMi45OTggNCA0LjAzMiAxMi45NjIgNC4wMjcgMjMuOTc5YTIwIDIwIDAgMCAwIDIuNDYxIDkuNjIyTDMuOTAzIDQzLjA0YS45OTguOTk4IDAgMCAwIDEuMjE5IDEuMjMxbDkuNjg3LTIuNTRhMjAgMjAgMCAwIDAgOS4xOTcgMi4yNDRjMTEuMDI0IDAgMTkuOTktOC45NjMgMTkuOTk1LTE5Ljk4QTE5Ljg2IDE5Ljg2IDAgMCAwIDM4LjE1MyA5Ljg2IDE5Ljg3IDE5Ljg3IDAgMCAwIDI0LjAxNCA0Ii8+PHBhdGggZmlsbD0iIzQwYzM1MSIgZD0iTTM1LjE3NiAxMi44MzJhMTUuNjcgMTUuNjcgMCAwIDAtMTEuMTU3LTQuNjI2Yy04LjcwNCAwLTE1Ljc4MyA3LjA3Ni0xNS43ODcgMTUuNzc0YTE1Ljc0IDE1Ljc0IDAgMCAwIDIuNDEzIDguMzk2bC4zNzYuNTk3LTEuNTk1IDUuODIxIDUuOTczLTEuNTY2LjU3Ny4zNDJhMTUuNzUgMTUuNzUgMCAwIDAgOC4wMzIgMi4xOTloLjAwNmM4LjY5OCAwIDE1Ljc3Ny03LjA3NyAxNS43OC0xNS43NzZhMTUuNjggMTUuNjggMCAwIDAtNC42MTgtMTEuMTYxIi8+PHBhdGggZmlsbD0iI2ZmZiIgZD0iTTE5LjI2OCAxNi4wNDVjLS4zNTUtLjc5LS43MjktLjgwNi0xLjA2OC0uODItLjI3Ny0uMDEyLS41OTMtLjAxMS0uOTA5LS4wMTFzLS44My4xMTktMS4yNjUuNTk0LTEuNjYxIDEuNjIyLTEuNjYxIDMuOTU2IDEuNyA0LjU5IDEuOTM3IDQuOTA2IDMuMjgyIDUuMjU5IDguMTA0IDcuMTYxYzQuMDA3IDEuNTggNC44MjMgMS4yNjYgNS42OTMgMS4xODdzMi44MDctMS4xNDcgMy4yMDItMi4yNTUuMzk1LTIuMDU3LjI3Ny0yLjI1NWMtLjExOS0uMTk4LS40MzUtLjMxNi0uOTA5LS41NTRzLTIuODA3LTEuMzg1LTMuMjQyLTEuNTQzLS43NTEtLjIzNy0xLjA2OC4yMzhjLS4zMTYuNDc0LTEuMjI1IDEuNTQzLTEuNTAyIDEuODU5cy0uNTU0LjM1Ny0xLjAyOC4xMTktMi4wMDItLjczOC0zLjgxNS0yLjM1NGMtMS40MS0xLjI1Ny0yLjM2Mi0yLjgxLTIuNjM5LTMuMjg1LS4yNzctLjQ3NC0uMDMtLjczMS4yMDgtLjk2OC4yMTMtLjIxMy40NzQtLjU1NC43MTItLjgzMS4yMzctLjI3Ny4zMTYtLjQ3NS40NzQtLjc5MXMuMDc5LS41OTQtLjA0LS44MzFjLS4xMTctLjIzOC0xLjAzOS0yLjU4NC0xLjQ2MS0zLjUyMiIvPjwvc3ZnPg=="
        },
        "displayName": "WhatsApp Business Cloud",
        "typeVersion": 1,
        "nodeCategories": [
          {
            "id": 6,
            "name": "Communication"
          },
          {
            "id": 28,
            "name": "HITL"
          }
        ]
      },
      {
        "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"
          }
        ]
      },
      {
        "id": 839,
        "icon": "fa:clock",
        "name": "n8n-nodes-base.scheduleTrigger",
        "codex": {
          "data": {
            "alias": [
              "Time",
              "Scheduler",
              "Polling",
              "Cron",
              "Interval"
            ],
            "resources": {
              "generic": [],
              "primaryDocumentation": [
                {
                  "url": "https://docs.n8n.io/integrations/builtin/core-nodes/n8n-nodes-base.scheduletrigger/"
                }
              ]
            },
            "categories": [
              "Core Nodes"
            ],
            "nodeVersion": "1.0",
            "codexVersion": "1.0"
          }
        },
        "group": "[\"trigger\",\"schedule\"]",
        "defaults": {
          "name": "Schedule Trigger",
          "color": "#31C49F"
        },
        "iconData": {
          "icon": "clock",
          "type": "icon"
        },
        "displayName": "Schedule Trigger",
        "typeVersion": 1,
        "nodeCategories": [
          {
            "id": 9,
            "name": "Core Nodes"
          }
        ]
      },
      {
        "id": 855,
        "icon": "file:DebugHelper.svg",
        "name": "n8n-nodes-base.debugHelper",
        "codex": {
          "data": {
            "alias": [
              "Mock",
              "Sample",
              "Demo",
              "Test",
              "Throw error",
              "OOM",
              "Out of Memory",
              "placeholder"
            ],
            "resources": {
              "primaryDocumentation": [
                {
                  "url": "https://docs.n8n.io/integrations/builtin/core-nodes/n8n-nodes-base.debughelper/"
                }
              ]
            },
            "categories": [
              "Development"
            ],
            "nodeVersion": "1.0",
            "codexVersion": "1.0"
          }
        },
        "group": "[\"output\"]",
        "defaults": {
          "name": "DebugHelper"
        },
        "iconData": {
          "type": "file",
          "fileBuffer": "data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNDAiIGhlaWdodD0iNDAiIHZpZXdCb3g9IjAgMCA0MCA0MCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTI2Ljk1MzEgMTMuMTk3OEMyOS41Mjc2IDEzLjE5NzggMzAuNTcyOSAxNi4zMjY0IDMwLjU3MjkgMTguOTAwOVYyNi43Mzk0QzMwLjU3MjkgMzIuNTQ5OSAyNS44NjI2IDM3LjI2MDMgMjAuMDUyIDM3LjI2MDNDMTQuMjQxNiAzNy4yNjAzIDkuNTMxMjUgMzIuNTQ5OSA5LjUzMTI1IDI2LjczOTRWMTguOTAwOUM5LjUzMTI1IDE2LjMyNjQgMTAuNTc2NiAxMy4xOTc4IDEzLjE1MSAxMy4xOTc4SDI2Ljk1MzFaIiBmaWxsPSIjRjRBMDI2Ii8+CjxwYXRoIGQ9Ik0yNC4xNDA2IDE1LjgwMkgxNS45NjM1QzE0LjQ4MjIgMTUuODAyIDEzLjI4MTIgMTQuNjAxMSAxMy4yODEyIDEzLjExOThDMTMuMjgxMiA5Ljk5ODgzIDE1LjgxMTMgNy40Njg3NSAxOC45MzIzIDcuNDY4NzVIMjEuMTcxOUMyNC4yOTI4IDcuNDY4NzUgMjYuODIyOSA5Ljk5ODgzIDI2LjgyMjkgMTMuMTE5OEMyNi44MjI5IDE0LjYwMTEgMjUuNjIyIDE1LjgwMiAyNC4xNDA2IDE1LjgwMloiIGZpbGw9IiNDQTQ2M0QiLz4KPHBhdGggZD0iTTM4Ljk1ODQgMjIuODU5NEgzMS41NjI1VjE4LjkwMUMzMS41NjI1IDE4LjgyMTYgMzEuNTg3IDE4Ljc0MiAzMS41ODUyIDE4LjY2MjNDMzUuMzQzNyAxOC4yNzAzIDM3LjUgMTUuNzk3MyAzNy41IDExLjczOTVWMTAuODAyQzM3LjUgMTAuMjI2NyAzNy4wMzM1IDkuNzYwMzkgMzYuNDU4NCA5Ljc2MDM5QzM1Ljg4MzIgOS43NjAzOSAzNS40MTY3IDEwLjIyNjcgMzUuNDE2NyAxMC44MDJWMTEuNzM5NUMzNS40MTY3IDE0LjczOTUgMzQuMDg4MiAxNi4zMzQ5IDMxLjM2MzIgMTYuNTk2M0MzMC44ODkxIDE0LjQ4NSAyOS43MzIzIDEyLjY2MDMgMjcuODA1NiAxMi4yNDQ4QzI3LjUxMyAxMC4wMTUxIDI2LjEzMjcgOC4xMjg0NCAyNC4yMDI5IDcuMTQ4OTFDMjUuMDA5MiA2LjMyODUyIDI1LjUyMDkgNS4yMDQ2MSAyNS41MjA5IDMuOTY2MDlWMy4wNDE2NEMyNS41MjA5IDIuNDY2MzMgMjUuMDU0NSAyIDI0LjQ3OTMgMkMyMy45MDQxIDIgMjMuNDM3NSAyLjQ2NjMzIDIzLjQzNzUgMy4wNDE2NFYzLjk2NjA5QzIzLjQzNzUgNS4zMjMxMyAyMi4zMDc1IDYuNDAxMDIgMjAuOTUwNSA2LjQwMTAySDE5LjE1MzdDMTcuNzk2NyA2LjQwMTAyIDE2LjY2NjcgNS4zMjMxMyAxNi42NjY3IDMuOTY2MDlWMy4wNDE2NEMxNi42NjY3IDIuNDY2MzMgMTYuMjAwMiAyIDE1LjYyNTEgMkMxNS4wNDk5IDIgMTQuNTgzNCAyLjQ2NjMzIDE0LjU4MzQgMy4wNDE2NFYzLjk2NjA5QzE0LjU4MzQgNS4yMDQ2MSAxNS4wOTUgNi4zMjg1MiAxNS45MDE0IDcuMTQ4OThDMTMuOTcxNiA4LjEyODQ0IDEyLjU4NDggMTAuMDE1MiAxMi4yOTIxIDEyLjI0NDhDMTAuMzYyOCAxMi42NjA4IDkuMjA4OTEgMTQuNDg5OCA4LjczNTk0IDE2LjYwNDhDNS45NDIyNyAxNi4zNzM2IDQuNTgzMzYgMTQuNzc2NSA0LjU4MzM2IDExLjczOTVWMTAuODAyQzQuNTgzMzYgMTAuMjI2NyA0LjExNjg3IDkuNzYwMzkgMy41NDE3MiA5Ljc2MDM5QzIuOTY2NTYgOS43NjAzOSAyLjUgMTAuMjI2NyAyLjUgMTAuODAyVjExLjczOTVDMi41IDE1LjgzNDUgNC42NDM2NyAxOC4zMTUyIDguNDY2OCAxOC42NzIzQzguNDY1MDggMTguNzQ4NSA4LjQzNzUgMTguODI0OCA4LjQzNzUgMTguOTAxVjIyLjg1OTRIMS4wNDE2NEMwLjQ2NjQ4NCAyMi44NTk0IDAgMjMuMzI1NyAwIDIzLjkwMUMwIDI0LjQ3NjMgMC40NjY0ODQgMjQuOTQyNyAxLjA0MTY0IDI0Ljk0MjdIOC40Mzc1VjI2LjczOTVDOC40Mzc1IDI3LjU2OTggOC41NTIyNyAyOC4zNzk2IDguNzE5MzcgMjkuMTYwOEM0LjczODk4IDI5LjQzMDUgMi41IDMxLjkzMDIgMi41IDM2LjExNDVWMzcuMDUyQzIuNSAzNy42MjczIDIuOTY2NDggMzguMDkzNyAzLjU0MTY0IDM4LjA5MzdDNC4xMTY4IDM4LjA5MzcgNC41ODMyOCAzNy42MjczIDQuNTgzMjggMzcuMDUyVjM2LjExNDVDNC41ODMyOCAzMi44NDkzIDYuMTU3NTggMzEuMjQ4IDkuMzkzMDUgMzEuMjIwMUMxMS4xNDcgMzUuMzc3IDE1LjI2NDIgMzguMzAyIDIwLjA1MiAzOC4zMDJDMjQuODM5MiAzOC4zMDIgMjguOTU2IDM1LjM3NzcgMzAuNzEwMiAzMS4yMjE2QzMzLjg3NTggMzEuMjgyOSAzNS40MTY2IDMyLjg4NDQgMzUuNDE2NiAzNi4xMTQ1VjM3LjA1MkMzNS40MTY2IDM3LjYyNzMgMzUuODgzIDM4LjA5MzcgMzYuNDU4MiAzOC4wOTM3QzM3LjAzMzQgMzguMDkzNyAzNy41IDM3LjYyNzMgMzcuNSAzNy4wNTJWMzYuMTE0NUMzNy41IDMxLjk2NjEgMzUuMjQ4MiAyOS40NzI5IDMxLjMzMTMgMjkuMTY3NkMzMS40OTkzIDI4LjM4NDQgMzEuNTYyNSAyNy41NzIyIDMxLjU2MjUgMjYuNzM5NVYyNC45NDI3SDM4Ljk1ODRDMzkuNTMzNiAyNC45NDI3IDQwIDI0LjQ3NjMgNDAgMjMuOTAxQzQwIDIzLjMyNTcgMzkuNTMzNSAyMi44NTk0IDM4Ljk1ODQgMjIuODU5NFpNMTguOTMyMyA4LjQ4NDM4SDIxLjE3MTlDMjMuNzEzNCA4LjQ4NDM4IDI1Ljc4MTMgMTAuNTUyMiAyNS43ODEzIDEzLjA5MzhDMjUuNzgxMyAxMy45OTg0IDI1LjA0NTMgMTQuNzM0NCAyNC4xNDA2IDE0LjczNDRIMTUuOTYzNUMxNS4wNTg4IDE0LjczNDQgMTQuMzIyOSAxMy45OTg0IDE0LjMyMjkgMTMuMDkzOEMxNC4zMjI5IDEwLjU1MjIgMTYuMzkwNyA4LjQ4NDM4IDE4LjkzMjMgOC40ODQzOFpNMTAuNTIwOSAyNi43Mzk1VjE4LjkwMUMxMC41MjA5IDE3LjI3NjYgMTEuMDYzNyAxNC45NTMzIDEyLjQzMzYgMTQuMzY3QzEyLjk1MTMgMTUuODAyIDE0LjM1MjMgMTYuODE3NyAxNS45NjM2IDE2LjgxNzdIMTguOTU4NFYzNi4xNTUyQzE0LjI0NDggMzUuNjExMyAxMC41MjA5IDMxLjU5NjQgMTAuNTIwOSAyNi43Mzk1Wk0yMS4wNDE2IDM2LjE2NzJWMTYuODE3N0gyNC4xNDA2QzI1Ljc1MTkgMTYuODE3NyAyNy4xMDA5IDE1LjgwMiAyNy42MTg1IDE0LjM2N0MyOC45ODg0IDE0Ljk1MzMgMjkuNDc5MSAxNy4yNzY1IDI5LjQ3OTEgMTguOTAxVjI2LjczOTVDMjkuNDc5MSAzMS42MzIzIDI1LjgwNTIgMzUuNjcwOCAyMS4wNDE2IDM2LjE2NzJaIiBmaWxsPSJibGFjayIvPgo8L3N2Zz4K"
        },
        "displayName": "DebugHelper",
        "typeVersion": 1,
        "nodeCategories": [
          {
            "id": 5,
            "name": "Development"
          }
        ]
      }
    ],
    "categories": [
      {
        "id": 16,
        "name": "DevOps"
      }
    ],
    "image": []
  }
}