This workflow follows the Discord → 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": "Media Pipeline - Orchestrator",
"nodes": [
{
"parameters": {
"httpMethod": "POST",
"path": "watcher",
"responseMode": "lastNode",
"options": {}
},
"id": "watcher-webhook",
"name": "Watcher Webhook",
"type": "n8n-nodes-base.webhook",
"typeVersion": 2,
"position": [
250,
300
]
},
{
"parameters": {
"url": "http://worker-pool:3501/jobs/transcode",
"method": "POST",
"authentication": "none",
"sendBody": true,
"bodyParameters": {
"parameters": [
{
"name": "file_path",
"value": "={{ $json.body.data.path }}"
},
{
"name": "priority",
"value": "normal"
}
]
},
"options": {}
},
"id": "call-worker-pool",
"name": "Call Worker Pool",
"type": "n8n-nodes-base.httpRequest",
"typeVersion": 4.1,
"position": [
450,
300
]
},
{
"parameters": {
"httpMethod": "POST",
"path": "worker-callback",
"responseMode": "lastNode",
"options": {}
},
"id": "worker-callback-webhook",
"name": "Worker Callback",
"type": "n8n-nodes-base.webhook",
"typeVersion": 2,
"position": [
250,
500
]
},
{
"parameters": {
"webhookUri": "={{ $env.DISCORD_WEBHOOK }}",
"text": "={{ $json.body.event === 'job.completed' ? '\u2705 Transcodage termin\u00e9' : '\u274c ' + $json.body.data.code }}"
},
"id": "discord-notify",
"name": "Discord Notification",
"type": "n8n-nodes-base.discord",
"typeVersion": 1,
"position": [
450,
500
]
}
],
"connections": {
"Watcher Webhook": {
"main": [
[
{
"node": "Call Worker Pool",
"type": "main",
"index": 0
}
]
]
},
"Worker Callback": {
"main": [
[
{
"node": "Discord Notification",
"type": "main",
"index": 0
}
]
]
}
},
"settings": {
"callerPolicy": "workflowsFromSameOwner"
}
}
For the full experience including quality scoring and batch install features for each workflow upgrade to Pro
About this workflow
Media Pipeline - Orchestrator. Uses httpRequest, discord. Webhook trigger; 4 nodes.
Source: https://github.com/Sofian-bll/media-pipeline/blob/main/n8n/n8n-media-pipeline-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.
URL Health Checker. Uses httpRequest, discord, errorTrigger. Webhook trigger; 9 nodes.
Add A Bug To Linear Via Slack Command. Uses httpRequest, stickyNote. Webhook trigger; 10 nodes.
When building a product it's important to discover and eliminate bugs as quickly as possible. Since we're using our product at n8n a lot, we wanted to make it as easy as possible for everyone to add b
Proxmox VM Lifecycle Automation. Uses telegram, httpRequest. Webhook trigger; 9 nodes.