Error: The resource you are requesting could not be found The requested webhook "e08ce146-c07e-478d-9b19-09c79834a70d" is not registered

I have a N8N workflow with a webhook with url in the subject above. When trying to connect to it from another workflow, this error message pops up.

Following is the calling workflow:

The following is the called workflow (webhook). URL is the same in both (called n caller).

I tried ‘LISTEN..’ for the 2nd webhook but the same error.

Please help.

Describe the problem/error/question

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:

Hey you are doing POST request to GET Webhook, change it to GET

Make sure you use Listen in when testing, and the prod url when activating the workflows for real.
Mark as Solution if it helped :slight_smile:

1 Like

Hey @nkhwaja would you like to share your workflow?

Hi there,

I see that you are trying to POST to the Webhook at localhost:5678 for a locally running n8n instance, Besides the recommendation above if you can share the workflow then we can recreate it and check it for you,

Cheers!

I think, if the only difference was the method, the error would be different
(it would say “This webhook is not registered for POST requests. Did you mean to make a GET request?”)

Right now the error says that the “webhook is not registered”. That means the server is not expecting any request to that endpoint, neither GET nor POST.

The error on the screenshot can only mean that the webhook is down.

1 Like

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