AutomationFlowsCRM & Sales › Sync Zendesk Companies to HubSpot

Sync Zendesk Companies to HubSpot

Original n8n title: Zendesk Hubspot

Zendesk Hubspot. Uses functionItem, hubspot, zendesk. Scheduled trigger; 9 nodes.

Cron / scheduled trigger★★★☆☆ complexity9 nodesFunction ItemHubSpotZendesk
CRM & Sales Trigger: Cron / scheduled Nodes: 9 Complexity: ★★★☆☆ Added:

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": [
    {
      "id": "60e3ee97-68cb-46ef-8a92-a9e8d1cdd45d",
      "name": "Add Zendesk company data to Hubspot data",
      "type": "n8n-nodes-base.merge",
      "position": [
        1120,
        320
      ],
      "parameters": {
        "mode": "mergeByKey",
        "propertyName1": "properties.name.value",
        "propertyName2": "name"
      },
      "typeVersion": 1
    },
    {
      "id": "d72c4307-c24c-494f-b5c2-57fd44ede5a5",
      "name": "Set new last execution timestamp",
      "type": "n8n-nodes-base.functionItem",
      "position": [
        1820,
        300
      ],
      "parameters": {
        "functionCode": "// Code here will run once per input item.\n// More info and help: https://docs.n8n.io/nodes/n8n-nodes-base.functionItem\n// Tip: You can use luxon for dates and $jmespath for querying JSON structures\n\n// Add a new field called 'myNewField' to the JSON of the item\nconst staticData = getWorkflowStaticData('global');\n\nstaticData.lastExecution = $item(0).$node[\"Get last execution timestamp\"].executionTimeStamp;\n\nreturn item;"
      },
      "executeOnce": true,
      "typeVersion": 1
    },
    {
      "id": "c10e7993-4cd4-4b79-9dce-66097d797b30",
      "name": "Get last execution timestamp",
      "type": "n8n-nodes-base.functionItem",
      "position": [
        400,
        300
      ],
      "parameters": {
        "functionCode": "// Code here will run once per input item.\n// More info and help: https://docs.n8n.io/nodes/n8n-nodes-base.functionItem\n// Tip: You can use luxon for dates and $jmespath for querying JSON structures\n\n// Add a new field called 'myNewField' to the JSON of the item\nconst staticData = getWorkflowStaticData('global');\n\nif(!staticData.lastExecution){\n  staticData.lastExecution = new Date();\n}\n\nitem.executionTimeStamp = new Date();\nitem.lastExecution = staticData.lastExecution;\n\n\nreturn item;"
      },
      "typeVersion": 1
    },
    {
      "id": "3c154d99-7984-4561-9fdf-60b0f705c5ee",
      "name": "Get modified companies",
      "type": "n8n-nodes-base.hubspot",
      "position": [
        620,
        300
      ],
      "parameters": {
        "filters": {
          "since": "={{ $json[\"lastExecution\"] }}"
        },
        "resource": "company",
        "operation": "getRecentlyModified",
        "authentication": "appToken"
      },
      "credentials": {
        "hubspotAppToken": {
          "name": "<your credential>"
        }
      },
      "typeVersion": 1
    },
    {
      "id": "6f05aae1-731e-42cf-b403-baf5f86aa934",
      "name": "Get all Zendesk organisations",
      "type": "n8n-nodes-base.zendesk",
      "position": [
        880,
        420
      ],
      "parameters": {
        "resource": "organization",
        "operation": "getAll",
        "returnAll": true
      },
      "credentials": {
        "zendeskApi": {
          "name": "<your credential>"
        }
      },
      "typeVersion": 1
    },
    {
      "id": "a8ae65dc-0c60-42cb-9996-26e84770e299",
      "name": "Company exists in Zendesk",
      "type": "n8n-nodes-base.if",
      "position": [
        1340,
        320
      ],
      "parameters": {
        "conditions": {
          "string": [
            {
              "value1": "={{ $json[\"id\"] }}",
              "operation": "isNotEmpty"
            }
          ]
        }
      },
      "typeVersion": 1
    },
    {
      "id": "a81ff688-8639-476d-8274-383e5ff51b97",
      "name": "Create organisation",
      "type": "n8n-nodes-base.zendesk",
      "position": [
        1600,
        400
      ],
      "parameters": {
        "name": "={{ $json[\"properties\"].name.value }}",
        "resource": "organization",
        "additionalFields": {
          "domain_names": "={{ $json[\"properties\"].domain.value }}"
        }
      },
      "credentials": {
        "zendeskApi": {
          "name": "<your credential>"
        }
      },
      "typeVersion": 1
    },
    {
      "id": "fd2780b3-c5cc-4535-ba71-840b13578a07",
      "name": "Update organisation",
      "type": "n8n-nodes-base.zendesk",
      "position": [
        1600,
        200
      ],
      "parameters": {
        "id": "={{ $json[\"id\"] }}",
        "resource": "organization",
        "operation": "update",
        "updateFields": {
          "name": "={{ $json[\"properties\"].name.value }}",
          "domain_names": "={{ $json[\"properties\"].domain.value }}"
        }
      },
      "credentials": {
        "zendeskApi": {
          "name": "<your credential>"
        }
      },
      "typeVersion": 1
    },
    {
      "id": "7f19e5ba-e973-4e6c-a2d0-a320ac314fa6",
      "name": "Every 5 minutes",
      "type": "n8n-nodes-base.cron",
      "position": [
        180,
        300
      ],
      "parameters": {
        "triggerTimes": {
          "item": [
            {
              "mode": "everyX",
              "unit": "minutes",
              "value": 5
            }
          ]
        }
      },
      "typeVersion": 1
    }
  ],
  "connections": {
    "Every 5 minutes": {
      "main": [
        [
          {
            "node": "Get last execution timestamp",
            "type": "main",
            "index": 0
          }
        ]
      ]
    },
    "Create organisation": {
      "main": [
        [
          {
            "node": "Set new last execution timestamp",
            "type": "main",
            "index": 0
          }
        ]
      ]
    },
    "Update organisation": {
      "main": [
        [
          {
            "node": "Set new last execution timestamp",
            "type": "main",
            "index": 0
          }
        ]
      ]
    },
    "Get modified companies": {
      "main": [
        [
          {
            "node": "Get all Zendesk organisations",
            "type": "main",
            "index": 0
          },
          {
            "node": "Add Zendesk company data to Hubspot data",
            "type": "main",
            "index": 0
          }
        ]
      ]
    },
    "Company exists in Zendesk": {
      "main": [
        [
          {
            "node": "Update organisation",
            "type": "main",
            "index": 0
          }
        ],
        [
          {
            "node": "Create organisation",
            "type": "main",
            "index": 0
          }
        ]
      ]
    },
    "Get last execution timestamp": {
      "main": [
        [
          {
            "node": "Get modified companies",
            "type": "main",
            "index": 0
          }
        ]
      ]
    },
    "Get all Zendesk organisations": {
      "main": [
        [
          {
            "node": "Add Zendesk company data to Hubspot data",
            "type": "main",
            "index": 1
          }
        ]
      ]
    },
    "Add Zendesk company data to Hubspot data": {
      "main": [
        [
          {
            "node": "Company exists in Zendesk",
            "type": "main",
            "index": 0
          }
        ]
      ]
    }
  }
}

Credentials you'll need

Each integration node will prompt for credentials when you import. We strip credential IDs before publishing — you'll add your own.

Pro

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

About this workflow

Zendesk Hubspot. Uses functionItem, hubspot, zendesk. Scheduled trigger; 9 nodes.

Source: https://github.com/Zie619/n8n-workflows — original creator credit. Request a take-down →

More CRM & Sales workflows → · Browse all categories →

Related workflows

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

CRM & Sales

Zendesk Hubspot. Uses zendesk, hubspot, functionItem. Scheduled trigger; 13 nodes.

Zendesk, HubSpot, Function Item
CRM & Sales

This workflow automatically syncs your Zendesk tickets to your HubSpot contacts. Every 5 minutes, your Zendesk account collects all the new or updated tickets and syncs them accordingly, with your Hub

Zendesk, HubSpot, Function Item
CRM & Sales

Functionitem Zendesk. Uses noOp, functionItem, httpRequest, zendesk. Scheduled trigger; 21 nodes.

Function Item, HTTP Request, Zendesk +2
CRM & Sales

Functionitem Zendesk. Uses functionItem, zendesk, pipedrive, httpRequest. Scheduled trigger; 17 nodes.

Function Item, Zendesk, Pipedrive +1
CRM & Sales

This workflow runs hourly to find HubSpot contacts whose lead score drops below a threshold, deduplicates alerts using Google Sheets, notifies the owner via Slack, creates a HubSpot follow-up task, se

HubSpot, Google Sheets, Slack +1