AutomationFlowsWeb Scraping › Customer Support Ticket Automation

Customer Support Ticket Automation

Customer Support Ticket Automation. Uses emailReceive, httpRequest, emailSend. Manual trigger; 5 nodes.

Manual trigger★★☆☆☆ complexity5 nodesEmail ReceiveHTTP RequestEmail Send
Web Scraping Trigger: Manual Nodes: 5 Complexity: ★★☆☆☆ Added:

This workflow follows the Emailsend → HTTP Request recipe pattern — see all workflows that pair these two integrations.

The workflow JSON

Copy or download the full n8n JSON below. Paste it into a new n8n workflow, add your credentials, activate. Full import guide →

Download .json
{
  "nodes": [
    {
      "parameters": {
        "emailAddress": "your-support-email@example.com",
        "options": {}
      },
      "name": "Email Trigger",
      "type": "n8n-nodes-base.emailReceive",
      "typeVersion": 1,
      "position": [
        240,
        300
      ]
    },
    {
      "parameters": {
        "values": [
          {
            "name": "subject",
            "value": "{{ $json.subject }}"
          },
          {
            "name": "body",
            "value": "{{ $json.text }}"
          },
          {
            "name": "from",
            "value": "{{ $json.from[0].address }}"
          }
        ]
      },
      "name": "Extract Email Data",
      "type": "n8n-nodes-base.set",
      "typeVersion": 1,
      "position": [
        480,
        300
      ]
    },
    {
      "parameters": {
        "url": "https://your-ticketing-system.com/api/tickets",
        "method": "POST",
        "body": "{\"subject\": \"{{ $json.subject }}\", \"description\": \"{{ $json.body }}\", \"requester\": \"{{ $json.from }}\"}",
        "jsonBody": true,
        "options": {
          "headers": [
            {
              "name": "Authorization",
              "value": "Bearer YOUR_TICKETING_SYSTEM_API_KEY"
            },
            {
              "name": "Content-Type",
              "value": "application/json"
            }
          ]
        }
      },
      "name": "Create Ticket",
      "type": "n8n-nodes-base.httpRequest",
      "typeVersion": 1,
      "position": [
        720,
        200
      ]
    },
    {
      "parameters": {
        "to": "{{ $json.from }}",
        "subject": "Re: {{ $json.subject }}",
        "text": "Hi there,\n\nThank you for contacting us. We have received your request and created a ticket for you. We will get back to you shortly.\n\nBest regards,\nSupport Team",
        "options": {}
      },
      "name": "Send Confirmation Email",
      "type": "n8n-nodes-base.emailSend",
      "typeVersion": 1,
      "position": [
        720,
        400
      ]
    },
    {
      "parameters": {
        "url": "https://your-ticketing-system.com/api/tickets/{{ $json.id }}/assign",
        "method": "PUT",
        "body": "{\"assignee_id\": \"TEAM_MEMBER_ID\"}",
        "jsonBody": true,
        "options": {
          "headers": [
            {
              "name": "Authorization",
              "value": "Bearer YOUR_TICKETING_SYSTEM_API_KEY"
            },
            {
              "name": "Content-Type",
              "value": "application/json"
            }
          ]
        }
      },
      "name": "Assign Ticket",
      "type": "n8n-nodes-base.httpRequest",
      "typeVersion": 1,
      "position": [
        960,
        200
      ]
    }
  ],
  "connections": {
    "Email Trigger": [
      [
        {
          "node": "Extract Email Data",
          "index": 0
        }
      ]
    ],
    "Extract Email Data": [
      [
        {
          "node": "Create Ticket",
          "index": 0
        }
      ],
      [
        {
          "node": "Send Confirmation Email",
          "index": 0
        }
      ]
    ],
    "Create Ticket": [
      [
        {
          "node": "Assign Ticket",
          "index": 0
        }
      ]
    ]
  }
}
Pro

For the full experience including quality scoring and batch install features for each workflow upgrade to Pro

About this workflow

Customer Support Ticket Automation. Uses emailReceive, httpRequest, emailSend. Manual trigger; 5 nodes.

Source: https://github.com/EdgeAgent/n8n-automations/blob/main/customer_support_ticket_automation/customer_support_ticket_automation.json — original creator credit. Request a take-down →

More Web Scraping workflows → · Browse all categories →

Related workflows

Workflows that share integrations, category, or trigger type with this one. All free to copy and import.

Web Scraping

PDF Accessibility Complete Automation. Uses httpRequest, n8n-nodes-pdf-accessibility, googleDrive, emailSend. Manual trigger; 6 nodes.

HTTP Request, N8N Nodes Pdf Accessibility, Google Drive +1
Web Scraping

Ecommerce Order Processing. Uses httpRequest, emailSend. Manual trigger; 4 nodes.

HTTP Request, Email Send
Web Scraping

Weather Forecast To Email Sms. Uses httpRequest, emailSend. Manual trigger; 3 nodes.

HTTP Request, Email Send
Web Scraping

PDF to Markdown Converter (LlamaCloud) Description: How it works This workflow extracts structured content from complex PDFs using LlamaCloud's advanced parsing engine:

HTTP Request, Google Drive
Web Scraping

> ⚠️ Notice: > Community nodes like @custom-js/n8n-nodes-pdf-toolkit-v2 can be installed on both self-hosted and Cloud instances of n8n. Just search for it via CustomJS.

HTTP Request, @Custom Js/N8N Nodes Pdf Toolkit, Email Send