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": "bench",
"active": true,
"settings": {},
"nodes": [
{
"id": "w1",
"name": "Webhook",
"type": "n8n-nodes-base.webhook",
"typeVersion": 2,
"position": [
0,
0
],
"parameters": {
"path": "bench",
"httpMethod": "POST",
"responseMode": "onReceived",
"options": {}
}
},
{
"id": "c1",
"name": "Map",
"type": "n8n-nodes-base.code",
"typeVersion": 2,
"position": [
200,
0
],
"parameters": {
"jsCode": "const codes = {France:'FR',Germany:'DE',Italy:'IT',Portugal:'PT'};\nreturn items.map(({json}) => { const b = json.body ?? json;\n return { json: {\n order_ref: (String(b.id).split('#')[1]) ?? null,\n customer_email: String(b.email).toLowerCase(),\n total_eur: Number(b.total_price),\n country: codes[b.shipping_address?.country] ?? b.shipping_address?.country,\n positions: (b.line_items ?? []).map(l => ({sku: l.sku, qty: Number(l.quantity), unit_eur: Math.round(Number(l.unit_price_cents))/100 })),\n t: b.t } };\n});"
}
},
{
"id": "h1",
"name": "Sink",
"type": "n8n-nodes-base.httpRequest",
"typeVersion": 4.2,
"position": [
400,
0
],
"parameters": {
"url": "http://127.0.0.1:9099/hit",
"method": "POST",
"sendBody": true,
"specifyBody": "json",
"jsonBody": "={{ JSON.stringify($json) }}",
"options": {}
}
}
],
"connections": {
"Webhook": {
"main": [
[
{
"node": "Map",
"type": "main",
"index": 0
}
]
]
},
"Map": {
"main": [
[
{
"node": "Sink",
"type": "main",
"index": 0
}
]
]
}
},
"id": "benchwf001"
}
For the full experience including quality scoring and batch install features for each workflow upgrade to Pro
About this workflow
bench. Uses httpRequest. Webhook trigger; 3 nodes.
Source: https://github.com/cpoder/vejas/blob/master/bench/compare/n8n/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