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 →
{
"name": "WMO Aanvraag Verwerking",
"nodes": [
{
"parameters": {
"httpMethod": "POST",
"path": "wmo-intake",
"responseMode": "lastNode",
"options": {}
},
"id": "webhook-node",
"name": "Webhook",
"type": "n8n-nodes-base.webhook",
"typeVersion": 1,
"position": [
250,
300
]
},
{
"parameters": {
"url": "http://api:8000/intake",
"method": "POST",
"sendBody": true,
"bodyContentType": "json",
"jsonBody": "={{ JSON.stringify($json.body) }}",
"options": {}
},
"id": "intake-node",
"name": "Intake + Pseudonimiseer",
"type": "n8n-nodes-base.httpRequest",
"typeVersion": 4,
"position": [
450,
300
]
},
{
"parameters": {
"url": "=http://api:8000/policy/{{ $json.voorziening }}",
"method": "GET",
"options": {}
},
"id": "policy-node",
"name": "Haal Beleid Op",
"type": "n8n-nodes-base.httpRequest",
"typeVersion": 4,
"position": [
650,
300
]
},
{
"parameters": {
"url": "http://api:8000/ai/propose",
"method": "POST",
"sendBody": true,
"bodyContentType": "json",
"jsonBody": "={{ JSON.stringify($('Intake + Pseudonimiseer').item.json) }}",
"options": {}
},
"id": "ai-node",
"name": "AI Voorstel",
"type": "n8n-nodes-base.httpRequest",
"typeVersion": 4,
"position": [
850,
300
]
},
{
"parameters": {
"url": "http://api:8000/fairness/check",
"method": "POST",
"sendBody": true,
"bodyContentType": "json",
"jsonBody": "={ \"voorstel\": \"{{ $json.voorstel }}\", \"onderbouwing\": \"{{ $json.onderbouwing }}\" }",
"options": {}
},
"id": "fairness-node",
"name": "Fairness Check",
"type": "n8n-nodes-base.httpRequest",
"typeVersion": 4,
"position": [
1050,
300
]
},
{
"parameters": {
"conditions": {
"boolean": [
{
"value1": "={{ $json.passed }}",
"value2": true
}
]
}
},
"id": "if-fairness-node",
"name": "Fairness OK?",
"type": "n8n-nodes-base.if",
"typeVersion": 1,
"position": [
1250,
300
]
},
{
"parameters": {
"conditions": {
"string": [
{
"value1": "={{ $('AI Voorstel').item.json.geschat_risico }}",
"value2": "hoog"
}
]
}
},
"id": "if-risico-node",
"name": "Risico = Hoog?",
"type": "n8n-nodes-base.if",
"typeVersion": 1,
"position": [
1450,
200
]
},
{
"parameters": {
"url": "http://api:8000/audit/log",
"method": "POST",
"sendBody": true,
"bodyContentType": "json",
"jsonBody": "={ \"request_id\": \"req_{{ $('Intake + Pseudonimiseer').item.json.token }}_{{ $now }}\", \"token\": \"{{ $('Intake + Pseudonimiseer').item.json.token }}\", \"voorziening\": \"{{ $('Intake + Pseudonimiseer').item.json.voorziening }}\", \"leeftijdsgroep\": \"{{ $('Intake + Pseudonimiseer').item.json.leeftijdsgroep }}\", \"ernst\": \"{{ $('Intake + Pseudonimiseer').item.json.ernst }}\", \"risico\": \"{{ $('AI Voorstel').item.json.geschat_risico }}\", \"flags\": {{ JSON.stringify($('Fairness Check').item.json.flags) }}, \"ai_voorstel\": \"{{ $('AI Voorstel').item.json.voorstel }}\", \"onderbouwing\": \"{{ $('AI Voorstel').item.json.onderbouwing }}\", \"besluit\": \"auto\", \"burger_bericht\": \"Uw aanvraag is verwerkt. Een medewerker controleert het besluit binnen 3 werkdagen.\" }",
"options": {}
},
"id": "audit-auto-node",
"name": "Audit (Auto)",
"type": "n8n-nodes-base.httpRequest",
"typeVersion": 4,
"position": [
1650,
100
]
},
{
"parameters": {
"url": "http://api:8000/audit/log",
"method": "POST",
"sendBody": true,
"bodyContentType": "json",
"jsonBody": "={ \"request_id\": \"req_{{ $('Intake + Pseudonimiseer').item.json.token }}_{{ $now }}\", \"token\": \"{{ $('Intake + Pseudonimiseer').item.json.token }}\", \"voorziening\": \"{{ $('Intake + Pseudonimiseer').item.json.voorziening }}\", \"leeftijdsgroep\": \"{{ $('Intake + Pseudonimiseer').item.json.leeftijdsgroep }}\", \"ernst\": \"{{ $('Intake + Pseudonimiseer').item.json.ernst }}\", \"risico\": \"{{ $('AI Voorstel').item.json.geschat_risico }}\", \"flags\": {{ JSON.stringify($('Fairness Check').item.json.flags) }}, \"ai_voorstel\": \"{{ $('AI Voorstel').item.json.voorstel }}\", \"onderbouwing\": \"{{ $('AI Voorstel').item.json.onderbouwing }}\", \"besluit\": \"review\", \"burger_bericht\": \"Uw aanvraag wordt beoordeeld door een medewerker. U ontvangt binnen 5 werkdagen bericht.\" }",
"options": {}
},
"id": "audit-review-node",
"name": "Audit (Review)",
"type": "n8n-nodes-base.httpRequest",
"typeVersion": 4,
"position": [
1650,
400
]
}
],
"connections": {
"Webhook": {
"main": [
[
{
"node": "Intake + Pseudonimiseer",
"type": "main",
"index": 0
}
]
]
},
"Intake + Pseudonimiseer": {
"main": [
[
{
"node": "Haal Beleid Op",
"type": "main",
"index": 0
}
]
]
},
"Haal Beleid Op": {
"main": [
[
{
"node": "AI Voorstel",
"type": "main",
"index": 0
}
]
]
},
"AI Voorstel": {
"main": [
[
{
"node": "Fairness Check",
"type": "main",
"index": 0
}
]
]
},
"Fairness Check": {
"main": [
[
{
"node": "Fairness OK?",
"type": "main",
"index": 0
}
]
]
},
"Fairness OK?": {
"main": [
[
{
"node": "Risico = Hoog?",
"type": "main",
"index": 0
}
],
[
{
"node": "Audit (Review)",
"type": "main",
"index": 0
}
]
]
},
"Risico = Hoog?": {
"main": [
[
{
"node": "Audit (Review)",
"type": "main",
"index": 0
}
],
[
{
"node": "Audit (Auto)",
"type": "main",
"index": 0
}
]
]
}
},
"active": false,
"settings": {
"executionOrder": "v1"
},
"versionId": "1",
"tags": []
}
For the full experience including quality scoring and batch install features for each workflow upgrade to Pro
About this workflow
WMO Aanvraag Verwerking. Uses httpRequest. Webhook trigger; 9 nodes.
Source: https://github.com/LokaMtr/wmo-hackathon/blob/d9eb6487db0b2ae78516d8f52c836ab8f8bacf2a/n8n/wmo_workflow.json — original creator credit. Request a take-down →
Related workflows
Workflows that share integrations, category, or trigger type with this one. All free to copy and import.
This n8n template provides enterprise-level version control for your workflows using GitHub integration. Stop losing hours to broken workflows and manual exports – get proper commit history, visual di
This flow creates dummy files for every item added in your *Arrs (Radarr/Sonarr) with the tag .
eek-Go v2 (Batch-Then-Review). Uses httpRequest. Webhook trigger; 75 nodes.
This workflow receives webhook requests from a content calendar and uses the X API v2 to publish text posts, threads, image/video posts, and polls, as well as delete existing posts and run a credentia
This workflow acts as a central API gateway for all technical indicator agents in the Binance Spot Market Quant AI system. It listens for incoming webhook requests and dynamically routes them to the c