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 salesperson from LinkedIn Ads and send to Freshsales

n8n_2000_workflows / assign-to-salesperson-linkedin-ads-freshsales.json

Complexity: simpleNodes: 4
adsassignassign-to-salesperson-linkedin-ads-freshsales.jsonbasedataerrorfetchfreshsalesfromhttprequestincominglinkedinn8nn8n_2000_workflowsnodessalespersonsendsimpleslacktotriggerwebhook

Node Overview

Workflow JSON

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