Obscure Problem in Discord node in Workflow 2 of Level 2 course

Describe the problem/error/question

I get a Problem in Discord node when executing the Workflow 2 for the Level 2 course. The Discord webhook connection test with credentials provided in the email is successful.

I have tried these 2 proposed solutions, but they didn’t work:

It’s too bad that n8n hasn’t really found the root cause for this, there are only workarounds, specially in a Course that is supposed to be error-proof.

Please, any help with be appreciated.

Thanks!

What is the error message (if any)?

Other info

Problem in Discord node

Item Index

0

Node type

n8n-nodes-base.discord

Node version

2 (Latest)

n8n version

1.115.3 (Cloud)

Time

22/10/2025, 6:43:55 p.m.

Stack trace

NodeOperationError: at ExecuteContext.parseDiscordError (/usr/local/lib/node_modules/n8n/node_modules/.pnpm/n8n-nodes-base@file+packages+nodes-base_@[email protected]_asn1.js@5_afd197edb2c1f848eae21a96a97fab23/node_modules/n8n-nodes-base/nodes/Discord/v2/helpers/utils.ts:84:9) at ExecuteContext.execute (/usr/local/lib/node_modules/n8n/node_modules/.pnpm/n8n-nodes-base@file+packages+nodes-base_@[email protected]_asn1.js@5_afd197edb2c1f848eae21a96a97fab23/node_modules/n8n-nodes-base/nodes/Discord/v2/actions/webhook/sendLegacy.operation.ts:153:34) at processTicksAndRejections (node:internal/process/task_queues:105:5) at ExecuteContext.router (/usr/local/lib/node_modules/n8n/node_modules/.pnpm/n8n-nodes-base@file+packages+nodes-base_@[email protected]_asn1.js@5_afd197edb2c1f848eae21a96a97fab23/node_modules/n8n-nodes-base/nodes/Discord/v2/actions/router.ts:70:17) at ExecuteContext.execute (/usr/local/lib/node_modules/n8n/node_modules/.pnpm/n8n-nodes-base@file+packages+nodes-base_@[email protected]_asn1.js@5_afd197edb2c1f848eae21a96a97fab23/node_modules/n8n-nodes-base/nodes/Discord/v2/DiscordV2.node.ts:33:10) at WorkflowExecute.executeNode (/usr/local/lib/node_modules/n8n/node_modules/.pnpm/n8n-core@file+packages+core_@[email protected]_@[email protected]_08b575bec2313d5d8a4cc75358971443/node_modules/n8n-core/src/execution-engine/workflow-execute.ts:1093:8) at WorkflowExecute.runNode (/usr/local/lib/node_modules/n8n/node_modules/.pnpm/n8n-core@file+packages+core_@[email protected]_@[email protected]_08b575bec2313d5d8a4cc75358971443/node_modules/n8n-core/src/execution-engine/workflow-execute.ts:1274:11) at /usr/local/lib/node_modules/n8n/node_modules/.pnpm/n8n-core@file+packages+core_@[email protected]_@[email protected]_08b575bec2313d5d8a4cc75358971443/node_modules/n8n-core/src/execution-engine/workflow-execute.ts:1676:27 at /usr/local/lib/node_modules/n8n/node_modules/.pnpm/n8n-core@file+packages+core_@[email protected]_@[email protected]_08b575bec2313d5d8a4cc75358971443/node_modules/n8n-core/src/execution-engine/workflow-execute.ts:2292:11

Please share your workflow

Share the output returned by the last node

Information on your n8n setup

  • n8n version: Version 1.115.3
  • Database (default: SQLite): default
  • n8n EXECUTIONS_PROCESS setting (default: own, main): default
  • Running n8n via (Docker, npm, n8n cloud, desktop app): n8n cloud
  • Operating system: Windows 11

Found a workaround for this strange Discord node issue. Doesn’t actually fix the problem but allows you to send the messages to Discord from command line. Execute this command 9 times in your Powershell and replace with your user ID:

$webhookUrl = “https://internal.users.n8n.cloud/webhook/discord-level2”
$payload = @{ content = “I sent the file using email with the label ID SENT. My ID: replace_with_your_ID” } | ConvertTo-Json
Invoke-RestMethod -Uri $webhookUrl -Method Post -Body $payload -ContentType ‘application/json’

Hope the n8n team or some experienced user can shed some light on this Discord node issue. The Courses should be fail-proof.

2 Likes

This topic was automatically closed 7 days after the last reply. New replies are no longer allowed.