Crafted by Ritik Makhija — Automations · AI Workflows · Open Source Advocate

Browse 5,000+ n8n Automation Templates

DM “PROJECT” on Instagram to collaborate on custom automation

← Back

Assign to agent from Intercom chat and send to Notion

n8n_2000_workflows / assign-to-agent-intercom-chat-notion.json

Complexity: simpleNodes: 4
agentassignassign-to-agent-intercom-chat-notion.jsonbasechatdataerrorfetchfromhttprequestincomingintercomn8nn8n_2000_workflowsnodesnotionsendsimpleslacktotriggerwebhook

Node Overview

Workflow JSON

{
  "name": "Assign to agent from Intercom chat and send to Notion",
  "nodes": [
    {
      "id": "trigger-intercom-chat",
      "name": "Incoming Trigger",
      "type": "n8n-nodes-base.webhook",
      "typeVersion": 1,
      "position": [
        -600,
        84700
      ],
      "parameters": {
        "httpMethod": "POST",
        "path": "assign-to-agent-from-intercom-chat-and-send-to-notion",
        "responseCode": 200,
        "responseMode": "onReceived"
      }
    },
    {
      "id": "fetch-intercom-chat",
      "name": "Fetch data from Intercom chat",
      "type": "n8n-nodes-base.httpRequest",
      "typeVersion": 1,
      "position": [
        -300,
        84700
      ],
      "parameters": {
        "method": "GET",
        "url": "https://api.example.com/intercom-chat",
        "responseFormat": "json"
      }
    },
    {
      "id": "send-notion",
      "name": "Send to Notion",
      "type": "n8n-nodes-base.httpRequest",
      "typeVersion": 1,
      "position": [
        300,
        84700
      ],
      "parameters": {
        "method": "POST",
        "url": "https://api.example.com/notion",
        "responseFormat": "json",
        "options": {}
      }
    },
    {
      "id": "error-handler-600-84700",
      "name": "Send Error to Slack",
      "type": "n8n-nodes-base.slack",
      "typeVersion": 1,
      "position": [
        600,
        84700
      ],
      "parameters": {
        "resource": "message",
        "operation": "post",
        "channel": "#automation-alerts",
        "text": "={{ $json.get('error_message', 'An error occurred') }}"
      }
    }
  ],
  "connections": {
    "Incoming Trigger": {
      "main": [
        [
          {
            "node": "Fetch data from Intercom chat",
            "type": "main",
            "index": 0
          }
        ]
      ]
    },
    "Fetch data from Intercom chat": {
      "main": [
        {
          "node": "Send to Notion",
          "type": "main",
          "index": 0
        }
      ]
    },
    "Send to Notion": {
      "main": [
        [
          {
            "node": "Send Error to Slack",
            "type": "main",
            "index": 0
          }
        ]
      ]
    }
  },
  "settings": {},
  "active": false
}
Download JSON