This workflow follows the Error Trigger → HTTP Request recipe pattern — see all workflows that pair these two integrations.
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": "Global Error Handler \u2192 AgeniusDesk",
"nodes": [
{
"parameters": {},
"id": "err-trigger",
"name": "Error Trigger",
"type": "n8n-nodes-base.errorTrigger",
"typeVersion": 1,
"position": [
260,
300
]
},
{
"parameters": {
"jsCode": "const err = $input.first().json;\n\nconst execution = err.execution || {};\nconst workflow = execution.workflow || {};\nconst lastNode = execution.lastNodeExecuted || 'unknown';\nconst errMsg = err.execution?.error?.message || err.message || 'Unknown error';\nconst errType = err.execution?.error?.name || 'Error';\n\nreturn [{\n json: {\n workflow_id: workflow.id || 'unknown',\n workflow_name: workflow.name || 'Unknown Workflow',\n execution_id: String(execution.id || ''),\n node_name: lastNode,\n error_message: errMsg,\n error_type: errType\n }\n}];"
},
"id": "err-extract",
"name": "Extract Error Details",
"type": "n8n-nodes-base.code",
"typeVersion": 2,
"position": [
500,
300
]
},
{
"parameters": {
"method": "POST",
"url": "={{ $env.FLOW_DASHBOARD_URL || 'http://localhost:3000' }}/api/errors/webhook",
"sendBody": true,
"specifyBody": "json",
"jsonBody": "={{ JSON.stringify($json) }}",
"options": {
"timeout": 5000
}
},
"id": "err-send",
"name": "Send to Flow Dashboard",
"type": "n8n-nodes-base.httpRequest",
"typeVersion": 4.2,
"position": [
740,
300
],
"continueOnFail": true
},
{
"parameters": {
"content": "## Global Error Handler \u2192 AgeniusDesk\n\nCatches errors from ALL workflows and sends them to your AgeniusDesk instance.\n\n**Setup:**\n1. Set the `AGENIUSDESK_URL` environment variable in your n8n instance\n (e.g., `http://your-dashboard:3000`)\n2. Or edit the HTTP Request node URL directly\n3. Go to n8n Settings \u2192 Workflows \u2192 Error Workflow \u2192 Select this workflow",
"height": 220,
"width": 520,
"color": 4
},
"id": "err-note",
"name": "Notes",
"type": "n8n-nodes-base.stickyNote",
"typeVersion": 1,
"position": [
260,
60
]
}
],
"connections": {
"Error Trigger": {
"main": [
[
{
"node": "Extract Error Details",
"type": "main",
"index": 0
}
]
]
},
"Extract Error Details": {
"main": [
[
{
"node": "Send to Flow Dashboard",
"type": "main",
"index": 0
}
]
]
}
},
"settings": {
"executionOrder": "v1"
}
}
For the full experience including quality scoring and batch install features for each workflow upgrade to Pro
About this workflow
Global Error Handler → AgeniusDesk. Uses errorTrigger, httpRequest. Event-driven trigger; 4 nodes.
Source: https://github.com/Mfrostbutter/ageniusdesk-ce/blob/main/backend/n8n_workflows/global-error-handler.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.
Say goodbye to messy JSON exports. Treat your n8n automations like real software with a built-in CI/CD pipeline.
WB-02: Auto-Assign Officer. Uses executeWorkflowTrigger, httpRequest, errorTrigger. Event-driven trigger; 8 nodes.
Global Error Handler - Kimi Auto-Heal. Uses errorTrigger, httpRequest, emailSend. Event-driven trigger; 4 nodes.
⚠️ F2G Error Handler. Uses errorTrigger, httpRequest. Event-driven trigger; 3 nodes.
PulseMosaic-v1.1-Error. Uses errorTrigger, httpRequest. Event-driven trigger; 3 nodes.