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": "Check Accounts Service",
"nodes": [
{
"parameters": {
"httpMethod": "POST",
"path": "check-institution",
"options": {}
},
"name": "Check Institution Webhook",
"type": "n8n-nodes-base.webhook",
"typeVersion": 1,
"position": [
0,
0
]
},
{
"parameters": {
"respondWith": "json",
"responseBody": "{\n \"exists\": {{$json.body.email.includes('demo') || $json.body.email.includes('admin')}}\n}",
"options": {}
},
"name": "Respond Institution",
"type": "n8n-nodes-base.respondToWebhook",
"typeVersion": 1,
"position": [
200,
0
]
},
{
"parameters": {
"httpMethod": "POST",
"path": "check-creator",
"options": {}
},
"name": "Check Creator Webhook",
"type": "n8n-nodes-base.webhook",
"typeVersion": 1,
"position": [
0,
200
]
},
{
"parameters": {
"respondWith": "json",
"responseBody": "{\n \"exists\": {{$json.body.email.includes('creator')}}\n}",
"options": {}
},
"name": "Respond Creator",
"type": "n8n-nodes-base.respondToWebhook",
"typeVersion": 1,
"position": [
200,
200
]
},
{
"parameters": {
"httpMethod": "POST",
"path": "check-employer",
"options": {}
},
"name": "Check Employer Webhook",
"type": "n8n-nodes-base.webhook",
"typeVersion": 1,
"position": [
0,
400
]
},
{
"parameters": {
"respondWith": "json",
"responseBody": "{\n \"exists\": {{$json.body.email.includes('employer') || $json.body.email.includes('empresa')}}\n}",
"options": {}
},
"name": "Respond Employer",
"type": "n8n-nodes-base.respondToWebhook",
"typeVersion": 1,
"position": [
200,
400
]
},
{
"parameters": {
"httpMethod": "POST",
"path": "check-account",
"options": {}
},
"name": "Check Any Account Webhook",
"type": "n8n-nodes-base.webhook",
"typeVersion": 1,
"position": [
0,
600
]
},
{
"parameters": {
"respondWith": "json",
"responseBody": "{\n \"exists\": {{$json.body.email.includes('demo') || $json.body.email.includes('admin') || $json.body.email.includes('creator') || $json.body.email.includes('employer')}}\n}",
"options": {}
},
"name": "Respond Any",
"type": "n8n-nodes-base.respondToWebhook",
"typeVersion": 1,
"position": [
200,
600
]
}
],
"connections": {
"Check Institution Webhook": {
"main": [
[
{
"node": "Respond Institution",
"type": "main",
"index": 0
}
]
]
},
"Check Any Account Webhook": {
"main": [
[
{
"node": "Respond Any",
"type": "main",
"index": 0
}
]
]
},
"Check Creator Webhook": {
"main": [
[
{
"node": "Respond Creator",
"type": "main",
"index": 0
}
]
]
},
"Check Employer Webhook": {
"main": [
[
{
"node": "Respond Employer",
"type": "main",
"index": 0
}
]
]
}
}
}
For the full experience including quality scoring and batch install features for each workflow upgrade to Pro
About this workflow
Check Accounts Service. Webhook trigger; 8 nodes.
Source: https://github.com/Aether-Connect-Labs/AcademicChain-Ledger/blob/main/n8n/workflows/check-accounts.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 workflow automates the process of recording successful payments from Stripe into QuickBooks by creating corresponding Sales Receipts. It ensures payment data is captured accurately, checks whethe
This n8n workflow automates the integration between Xero and FileMaker, allowing for seamless data transfer between the two platforms. By listening for webhooks from Xero (e.g., new invoices, payments
Integrate Xero with FileMaker using Webhooks. Uses crypto, moveBinaryData, filemaker. Webhook trigger; 11 nodes.
Environment Health (AcademicChain). Webhook trigger; 5 nodes.
Auth Mock Service. Webhook trigger; 8 nodes.