{
  "name": "Demo - Unsafe Support Agent",
  "nodes": [
    {
      "name": "Public Support Webhook",
      "type": "n8n-nodes-base.webhook",
      "parameters": {
        "authentication": "none"
      }
    },
    {
      "name": "Customer Support Agent",
      "type": "@n8n/n8n-nodes-langchain.agent",
      "parameters": {}
    },
    {
      "name": "Send Account Email",
      "type": "n8n-nodes-base.emailSend",
      "parameters": {}
    },
    {
      "name": "Fetch Customer URL",
      "type": "n8n-nodes-base.httpRequest",
      "parameters": {
        "method": "POST",
        "url": "={{ $json.customer_url }}"
      }
    }
  ],
  "connections": {
    "Public Support Webhook": {
      "main": [
        [
          {
            "node": "Customer Support Agent",
            "type": "main",
            "index": 0
          }
        ]
      ]
    },
    "Customer Support Agent": {
      "main": [
        [
          {
            "node": "Send Account Email",
            "type": "main",
            "index": 0
          }
        ]
      ]
    },
    "Send Account Email": {
      "main": [
        [
          {
            "node": "Fetch Customer URL",
            "type": "main",
            "index": 0
          }
        ]
      ]
    }
  }
}
