Web workflow

I’m sending requests to my webhook URL but nothing is happening. there’s no execution, no errors… it’s just dead. What am I missing

Describe the problem/error/question

<!-I’m sending requests to my webhook URL but nothing is happening. there’s no execution, no errors… it’s just dead. What am I missing

What is the error message (if any)?

Please share your workflow

(Select the nodes on your canvas and use the keyboard shortcuts CMD+C/CTRL+C and CMD+V/CTRL+V to copy and paste the workflow.)

Share the output returned by the last node

Information on your n8n setup

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

that usually means the workflow isn’t activated. In n8n, a webhook will only listen for live traffic when the workflow is switched to active mode. Saving it isn’t enough.

Also double-check that:

You’re using the production webhook URL, not the temporary test URL.

If you’re self-hosting, your WEBHOOK_URL environment variable is correctly set.

Your reverse proxy (like Nginx or Traefik) is forwarding requests properly.

There are no firewall or port restrictions blocking inbound traffic.

Once activated and properly configured, the webhook should begin registering executions immediately

2 Likes

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