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": "FileMaker",
"type": "n8n-nodes-base.filemaker",
"position": [
450,
320
],
"parameters": {
"action": "create",
"layout": "My Form Layout",
"fieldsParametersUi": {
"fields": [
{
"name": "first_name",
"value": "Harshil"
},
{
"name": "last_name",
"value": "Agrawal"
}
]
}
},
"credentials": {
"fileMaker": "<your credential>"
},
"typeVersion": 1
},
{
"name": "On clicking 'execute'",
"type": "n8n-nodes-base.manualTrigger",
"position": [
250,
320
],
"parameters": {},
"typeVersion": 1
},
{
"name": "FileMaker",
"type": "n8n-nodes-base.filemaker",
"position": [
450,
320
],
"parameters": {
"action": "create",
"layout": "My Form Layout",
"fieldsParametersUi": {
"fields": [
{
"name": "first_name",
"value": "Harshil"
},
{
"name": "last_name",
"value": "Agrawal"
}
]
}
},
"credentials": {
"fileMaker": "<your credential>"
},
"typeVersion": 1
},
{
"name": "FileMaker2",
"type": "n8n-nodes-base.filemaker",
"position": [
650,
320
],
"parameters": {
"modId": "={{$json[\"response\"][\"modId\"]}}",
"recid": "={{$json[\"response\"][\"recordId\"]}}",
"action": "edit",
"layout": "My Form Layout",
"fieldsParametersUi": {
"fields": [
{
"name": "address_country",
"value": "Germany"
}
]
}
},
"credentials": {
"fileMaker": "<your credential>"
},
"typeVersion": 1
},
{
"name": "FileMaker3",
"type": "n8n-nodes-base.filemaker",
"position": [
850,
320
],
"parameters": {
"recid": "={{$node[\"FileMaker\"].json[\"response\"][\"recordId\"]}}",
"layout": "My Form Layout"
},
"credentials": {
"fileMaker": "<your credential>"
},
"typeVersion": 1
}
],
"connections": {
"FileMaker": {
"main": [
[
{
"node": "FileMaker2",
"type": "main",
"index": 0
}
]
]
},
"FileMaker2": {
"main": [
[
{
"node": "FileMaker3",
"type": "main",
"index": 0
}
]
]
},
"On clicking 'execute'": {
"main": [
[
{
"node": "FileMaker",
"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.
fileMaker
About this workflow
Manual Filemaker. Uses filemaker, manualTrigger. Event-driven trigger; 5 nodes.
Source: https://github.com/Zie619/n8n-workflows — original creator credit. Request a take-down →