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 →
{
"nodes": [
{
"name": "Netlify Trigger",
"type": "n8n-nodes-base.netlifyTrigger",
"position": [
450,
300
],
"parameters": {
"event": "submissionCreated",
"formId": "615ad58f9f491e00070abac5",
"siteId": "b585059c-a19a-487c-831f-c57af6f13bd1"
},
"credentials": {
"netlifyApi": "<your credential>"
},
"typeVersion": 1
},
{
"name": "Set",
"type": "n8n-nodes-base.set",
"position": [
650,
300
],
"parameters": {
"values": {
"string": [
{
"name": "Name",
"value": "={{$json[\"name\"]}}"
},
{
"name": "Email",
"value": "={{$json[\"email\"]}}"
},
{
"name": "Role",
"value": "={{$json[\"role\"][0]}}"
}
]
},
"options": {},
"keepOnlySet": true
},
"typeVersion": 1
},
{
"name": "Airtable",
"type": "n8n-nodes-base.airtable",
"position": [
850,
300
],
"parameters": {
"table": "Table 1",
"options": {},
"operation": "append",
"application": "apphwBsFxzjDPDBA8"
},
"credentials": {
"airtableApi": "<your credential>"
},
"typeVersion": 1
}
],
"connections": {
"Set": {
"main": [
[
{
"node": "Airtable",
"type": "main",
"index": 0
}
]
]
},
"Netlify Trigger": {
"main": [
[
{
"node": "Set",
"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.
airtableApinetlifyApi
About this workflow
Netlify Airtable. Uses netlifyTrigger, airtable. Event-driven trigger; 3 nodes.
Source: https://github.com/Zie619/n8n-workflows — original creator credit. Request a take-down →