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": "30",
"name": "Receive updates when a subscriber is added to a group and strore the information in Airtable",
"nodes": [
{
"name": "On clicking 'execute'",
"type": "n8n-nodes-base.manualTrigger",
"disabled": true,
"position": [
110,
600
],
"parameters": {},
"typeVersion": 1
},
{
"name": "MailerLite Trigger",
"type": "n8n-nodes-base.mailerLiteTrigger",
"position": [
530,
300
],
"parameters": {
"event": "subscriber.add_to_group"
},
"credentials": {
"mailerLiteApi": "<your credential>"
},
"typeVersion": 1
},
{
"name": "Set",
"type": "n8n-nodes-base.set",
"position": [
730,
300
],
"parameters": {
"values": {
"string": [
{
"name": "Name",
"value": "={{$node[\"MailerLite Trigger\"].json[\"data\"][\"subscriber\"][\"name\"]}}"
},
{
"name": "Email",
"value": "={{$node[\"MailerLite Trigger\"].json[\"data\"][\"subscriber\"][\"email\"]}}"
}
]
},
"options": {},
"keepOnlySet": true
},
"typeVersion": 1
},
{
"name": "Airtable",
"type": "n8n-nodes-base.airtable",
"position": [
930,
300
],
"parameters": {
"table": "Data",
"options": {},
"operation": "append",
"application": ""
},
"credentials": {
"airtableApi": "<your credential>"
},
"typeVersion": 1
}
],
"active": false,
"settings": {},
"connections": {
"Set": {
"main": [
[
{
"node": "Airtable",
"type": "main",
"index": 0
}
]
]
},
"MailerLite Trigger": {
"main": [
[
{
"node": "Set",
"type": "main",
"index": 0
}
]
]
},
"On clicking 'execute'": {
"main": [
[]
]
}
}
}
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.
airtableApimailerLiteApi
About this workflow
Receive updates when a subscriber is added to a group and strore the information in Airtable. Uses manualTrigger, mailerLiteTrigger, airtable. Event-driven trigger; 4 nodes.
Source: https://github.com/Zie619/n8n-workflows — original creator credit. Request a take-down →