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 →
{
"id": "force-enrich",
"name": "YouthFit - \uac15\uc81c enrichment \uc6cc\ud06c\ud50c\ub85c\uc6b0",
"nodes": [
{
"parameters": {
"httpMethod": "POST",
"path": "force-enrich",
"responseMode": "lastNode",
"options": {},
"authentication": "headerAuth"
},
"id": "webhook-trigger",
"name": "Webhook",
"type": "n8n-nodes-base.webhook",
"typeVersion": 2,
"position": [
240,
300
],
"credentials": {
"httpHeaderAuth": {
"name": "<your credential>"
}
}
},
{
"parameters": {
"method": "POST",
"url": "={{ $env.BACKEND_BASE }}/api/internal/enrichment/jobs/{{ $json.body.jobId }}/callback",
"sendBody": true,
"bodyParameters": {
"parameters": [
{
"name": "status",
"value": "RUNNING"
}
]
},
"options": {
"response": {
"response": {
"fullResponse": false,
"responseFormat": "json"
}
},
"timeout": 10000
},
"sendHeaders": true,
"headerParameters": {
"parameters": [
{
"name": "X-Internal-Api-Key",
"value": "={{ $env.INTERNAL_API_KEY }}"
},
{
"name": "Content-Type",
"value": "application/json"
}
]
}
},
"id": "callback-running",
"name": "callback RUNNING",
"type": "n8n-nodes-base.httpRequest",
"typeVersion": 4.2,
"position": [
460,
300
]
},
{
"parameters": {
"jsCode": "// enrichment-merge \uba54\uac00\ub178\ub4dc \ub85c\uc9c1 \uc7ac\ud65c\uc6a9\n// \uc2e4\uc81c n8n UI \uc5f0\uacb0 \uc2dc Sub-workflow \ub610\ub294 Code \ub178\ub4dc\ub85c \ub300\uccb4\nconst { jobId, policyId, urls } = $json.body ?? $json;\n\n// URL \uc120\ud0dd \ubc0f fetch \uacb0\uacfc \ubcd1\ud569 (enrich.mjs selectUrls + mergeFetchResults \uc640 \ub3d9\uc77c\ud55c \ud750\ub984)\nconst selectedUrls = (urls ?? []).slice(0, 3);\n\n// \uc2e4\uc81c fetch\ub294 n8n HTTP Request \ub178\ub4dc \uccb4\uc778\uc73c\ub85c \ucc98\ub9ac\ub418\uc9c0\ub9cc\n// \uc2a4\ucf08\ub808\ud1a4\uc5d0\uc11c\ub294 \uacb0\uacfc\ub97c pass-through \ud55c\ub2e4\nreturn [{ json: { jobId, policyId, selectedUrls, enrichmentResult: {} } }];"
},
"id": "enrich-node",
"name": "enrich",
"type": "n8n-nodes-base.code",
"typeVersion": 2,
"onError": "continueErrorOutput",
"position": [
680,
300
]
},
{
"parameters": {
"method": "POST",
"url": "={{ $env.BACKEND_BASE }}/api/internal/policy-enrichment",
"sendBody": true,
"specifyBody": "json",
"jsonBody": "={{ JSON.stringify({ policyId: $json.policyId, enrichmentResult: $json.enrichmentResult }) }}",
"options": {
"response": {
"response": {
"fullResponse": false,
"responseFormat": "json"
}
},
"timeout": 30000
},
"sendHeaders": true,
"headerParameters": {
"parameters": [
{
"name": "X-Internal-Api-Key",
"value": "={{ $env.INTERNAL_API_KEY }}"
},
{
"name": "Content-Type",
"value": "application/json"
}
]
}
},
"id": "ingestion-update",
"name": "ingestion update",
"type": "n8n-nodes-base.httpRequest",
"typeVersion": 4.2,
"onError": "continueErrorOutput",
"position": [
900,
300
]
},
{
"parameters": {
"method": "POST",
"url": "={{ $env.BACKEND_BASE }}/api/internal/enrichment/jobs/{{ $('Webhook').item.json.body.jobId }}/callback",
"sendBody": true,
"bodyParameters": {
"parameters": [
{
"name": "status",
"value": "SUCCESS"
}
]
},
"options": {
"response": {
"response": {
"fullResponse": false,
"responseFormat": "json"
}
},
"timeout": 10000
},
"sendHeaders": true,
"headerParameters": {
"parameters": [
{
"name": "X-Internal-Api-Key",
"value": "={{ $env.INTERNAL_API_KEY }}"
},
{
"name": "Content-Type",
"value": "application/json"
}
]
}
},
"id": "callback-success",
"name": "callback SUCCESS",
"type": "n8n-nodes-base.httpRequest",
"typeVersion": 4.2,
"position": [
1120,
300
]
},
{
"parameters": {
"method": "POST",
"url": "={{ $env.BACKEND_BASE }}/api/internal/enrichment/jobs/{{ $('Webhook').item.json.body.jobId }}/callback",
"sendBody": true,
"specifyBody": "json",
"jsonBody": "={{ JSON.stringify({ status: 'FAILED', error: $execution.lastError?.message ?? 'unknown error' }) }}",
"options": {
"response": {
"response": {
"fullResponse": false,
"responseFormat": "json"
}
},
"timeout": 10000
},
"sendHeaders": true,
"headerParameters": {
"parameters": [
{
"name": "X-Internal-Api-Key",
"value": "={{ $env.INTERNAL_API_KEY }}"
},
{
"name": "Content-Type",
"value": "application/json"
}
]
}
},
"id": "callback-failed",
"name": "callback FAILED",
"type": "n8n-nodes-base.httpRequest",
"typeVersion": 4.2,
"position": [
680,
480
]
}
],
"connections": {
"Webhook": {
"main": [
[
{
"node": "callback RUNNING",
"type": "main",
"index": 0
}
]
]
},
"callback RUNNING": {
"main": [
[
{
"node": "enrich",
"type": "main",
"index": 0
}
]
]
},
"enrich": {
"main": [
[
{
"node": "ingestion update",
"type": "main",
"index": 0
}
],
[
{
"node": "callback FAILED",
"type": "main",
"index": 0
}
]
]
},
"ingestion update": {
"main": [
[
{
"node": "callback SUCCESS",
"type": "main",
"index": 0
}
],
[
{
"node": "callback FAILED",
"type": "main",
"index": 0
}
]
]
}
},
"settings": {
"executionOrder": "v1",
"errorWorkflow": ""
},
"meta": {
"templateCredsSetupCompleted": true
}
}
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.
httpHeaderAuth
For the full experience including quality scoring and batch install features for each workflow upgrade to Pro
About this workflow
YouthFit - 강제 enrichment 워크플로우. Uses httpRequest. Webhook trigger; 6 nodes.
Source: https://github.com/TaetaetaE01/youthfit/blob/7a10ca7b4612589c4a37490f52a1e61d2950a831/n8n/workflows/force-enrich.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 .
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
Sign PDF documents with legally-compliant digital signatures using X.509 certificates. Supports multiple PAdES signature levels (B, T, LT, LTA) with optional visible stamps.
📡 This workflow serves as the central Alpha Vantage API fetcher for Tesla trading indicators, delivering cleaned 20-point JSON outputs for three timeframes: , , and . It is required by the following a