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": "Wise Trigger",
"type": "n8n-nodes-base.wiseTrigger",
"position": [
450,
280
],
"parameters": {
"event": "tranferStateChange",
"profileId": 16138858
},
"credentials": {
"wiseApi": "<your credential>"
},
"typeVersion": 1
},
{
"name": "Wise",
"type": "n8n-nodes-base.wise",
"position": [
650,
280
],
"parameters": {
"resource": "transfer",
"transferId": "={{$json[\"data\"][\"resource\"][\"id\"]}}"
},
"credentials": {
"wiseApi": "<your credential>"
},
"typeVersion": 1
},
{
"name": "Set",
"type": "n8n-nodes-base.set",
"position": [
850,
280
],
"parameters": {
"values": {
"string": [
{
"name": "Transfer ID",
"value": "={{$json[\"id\"]}}"
},
{
"name": "Date",
"value": "={{$json[\"created\"]}}"
},
{
"name": "Reference",
"value": "={{$json[\"reference\"]}}"
},
{
"name": "Amount",
"value": "={{$json[\"sourceValue\"]}}"
}
]
},
"options": {},
"keepOnlySet": true
},
"typeVersion": 1
},
{
"name": "Airtable",
"type": "n8n-nodes-base.airtable",
"position": [
1050,
280
],
"parameters": {
"table": "Table 1",
"options": {},
"operation": "append",
"application": ""
},
"credentials": {
"airtableApi": "<your credential>"
},
"typeVersion": 1
}
],
"connections": {
"Set": {
"main": [
[
{
"node": "Airtable",
"type": "main",
"index": 0
}
]
]
},
"Wise": {
"main": [
[
{
"node": "Set",
"type": "main",
"index": 0
}
]
]
},
"Wise Trigger": {
"main": [
[
{
"node": "Wise",
"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.
airtableApiwiseApi
About this workflow
Wise Airtable. Uses wiseTrigger, wise, airtable. Event-driven trigger; 4 nodes.
Source: https://github.com/Zie619/n8n-workflows — original creator credit. Request a take-down →