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": "32",
"name": "Create a customer and add them to a segment in Customer.io",
"nodes": [
{
"name": "On clicking 'execute'",
"type": "n8n-nodes-base.manualTrigger",
"position": [
440,
260
],
"parameters": {},
"typeVersion": 1
},
{
"name": "CustomerIo",
"type": "n8n-nodes-base.customerIo",
"position": [
650,
260
],
"parameters": {
"id": "2",
"additionalFields": {
"customProperties": {
"customProperty": [
{
"key": "Name",
"value": "n8n"
}
]
}
}
},
"credentials": {
"customerIoApi": "<your credential>"
},
"typeVersion": 1
},
{
"name": "CustomerIo1",
"type": "n8n-nodes-base.customerIo",
"position": [
840,
260
],
"parameters": {
"resource": "segment",
"customerIds": "={{$node[\"CustomerIo\"].json[\"id\"]}}"
},
"credentials": {
"customerIoApi": "<your credential>"
},
"typeVersion": 1
}
],
"active": false,
"settings": {},
"connections": {
"CustomerIo": {
"main": [
[
{
"node": "CustomerIo1",
"type": "main",
"index": 0
}
]
]
},
"On clicking 'execute'": {
"main": [
[
{
"node": "CustomerIo",
"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.
customerIoApi
About this workflow
Create a customer and add them to a segment in Customer.io. Uses manualTrigger, customerIo. Event-driven trigger; 3 nodes.
Source: https://github.com/Zie619/n8n-workflows — original creator credit. Request a take-down →