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 →
{
"id": 83,
"name": "New WooCommerce Customer to Mautic",
"nodes": [
{
"name": "Check for Existing",
"type": "n8n-nodes-base.mautic",
"position": [
280,
480
],
"parameters": {
"options": {
"search": "={{$json[\"email\"]}}"
},
"operation": "getAll",
"authentication": "oAuth2"
},
"credentials": {
"mauticOAuth2Api": {
"name": "<your credential>"
}
},
"typeVersion": 1,
"alwaysOutputData": true
},
{
"name": "If New",
"type": "n8n-nodes-base.if",
"position": [
460,
480
],
"parameters": {
"conditions": {
"string": [
{
"value1": "={{$json[\"id\"]}}",
"operation": "isEmpty"
}
]
}
},
"typeVersion": 1
},
{
"name": "Create Contact",
"type": "n8n-nodes-base.mautic",
"position": [
680,
320
],
"parameters": {
"email": "={{$node[\"Customer Created\"].json[\"email\"]}}",
"company": "={{$node[\"Customer Created\"].json[\"billing\"][\"company\"]}}",
"options": {},
"lastName": "={{$node[\"Customer Created\"].json[\"last_name\"]}}",
"firstName": "={{$node[\"Customer Created\"].json[\"first_name\"]}}",
"authentication": "oAuth2",
"additionalFields": {}
},
"credentials": {
"mauticOAuth2Api": {
"name": "<your credential>"
}
},
"typeVersion": 1
},
{
"name": "Update Contact",
"type": "n8n-nodes-base.mautic",
"position": [
680,
580
],
"parameters": {
"options": {},
"contactId": "={{$json[\"id\"]}}",
"operation": "update",
"updateFields": {
"lastName": "={{$node[\"Customer Created or Updated\"].json[\"last_name\"]}}",
"firstName": "={{$node[\"Customer Created or Updated\"].json[\"first_name\"]}}"
},
"authentication": "oAuth2"
},
"credentials": {
"mauticOAuth2Api": {
"name": "<your credential>"
}
},
"typeVersion": 1
},
{
"name": "Customer Created or Updated",
"type": "n8n-nodes-base.wooCommerceTrigger",
"position": [
100,
480
],
"parameters": {
"event": "customer.updated"
},
"credentials": {
"wooCommerceApi": {
"name": "<your credential>"
}
},
"typeVersion": 1
}
],
"active": false,
"settings": {
"saveManualExecutions": true,
"saveExecutionProgress": true,
"saveDataSuccessExecution": "all"
},
"connections": {
"If New": {
"main": [
[
{
"node": "Create Contact",
"type": "main",
"index": 0
}
],
[
{
"node": "Update Contact",
"type": "main",
"index": 0
}
]
]
},
"Check for Existing": {
"main": [
[
{
"node": "If New",
"type": "main",
"index": 0
}
]
]
},
"Customer Created or Updated": {
"main": [
[
{
"node": "Check for Existing",
"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.
mauticOAuth2ApiwooCommerceApi
For the full experience including quality scoring and batch install features for each workflow upgrade to Pro
About this workflow
New WooCommerce Customer to Mautic. Uses mautic, wooCommerceTrigger. Event-driven trigger; 5 nodes.
Source: https://github.com/Zie619/n8n-workflows — original creator credit. Request a take-down →
Related workflows
Workflows that share integrations, category, or trigger type with this one. All free to copy and import.
This workflow uses a WooCommerce trigger that will run when a new customer has been added, It will then add the customer to Mautic.
Shopify Mautic. Uses shopifyTrigger, mautic, stickyNote. Event-driven trigger; 3 nodes.
This workflow uses a WooCommerce trigger that will run a new product has been added, It will then post the product to Telegram and Twitter.
🔧 How it works: • The workflow triggers when a new order is created in WooCommerce. • It extracts order details including ID, status, total, and products list. • Sends a formatted message via Telegram
This workflow uses a WooCommerce trigger that will run when an order has been placed.