n8n - 💡(How to fix) Fix Webhook returning 404 error: Cannot GET /webhook/single-webhook [2 comments, 2 participants]

Official PRs (…)
ON THIS PAGE

Recommended Tools

×6

Utilities matched from this issue’s tags and category — try them while you read without losing context.

GitHub issue graph ai analysis

Paste a GitHub issue URL. We fetch that issue, discover linked issues from bodies/comments/timeline, collect linked pull requests, and produce a structured English report.

The report is written in English Markdown for sharing and archival.

Helpful · Quick feedback

Loading…
GitHub stats
n8n-io/n8n#28942Fetched 2026-04-24 06:13:12
View on GitHub
Comments
2
Participants
2
Timeline
4
Reactions
0
Timeline (top)
commented ×2closed ×1labeled ×1

Error Message

I’m currently facing an issue while triggering an n8n webhook. The request is returning a 404 error with the following message:

Code Example

Invalid response. Received status 404  
Cannot GET /webhook/single-webhook
RAW_BUFFERClick to expand / collapse

Hi Team,

I’m currently facing an issue while triggering an n8n webhook. The request is returning a 404 error with the following message:

Invalid response. Received status 404  
Cannot GET /webhook/single-webhook

Details:

  • Instance is hosted on Azure App Service
  • Webhook URL being used: /webhook/single-webhook
  • Method: POST

docker pull ghcr.io/n8n-io/n8n-benchmark:latest# Print the help to list all available flagsdocker run ghcr.io/n8n-io/n8n-benchmark:latest run --help# Run all available benchmark scenarios for 1 minute with 5 concurrent requestsdocker run ghcr.io/n8n-io/n8n-benchmark:latest run
  --n8nBaseUrl=https://instance.url
  --n8nUserEmail=[email protected]
  --n8nUserPassword=InstanceOwnerPassword
  --vus=5
  --duration=1m
  --scenarioFilter=single-webhook

Observations:

  • It seems like the endpoint is not being recognized by n8n
  • Possibly the webhook is not registered or the workflow is not active

Any guidance or troubleshooting steps would be really helpful.

Thanks in advance!

extent analysis

TL;DR

The 404 error when triggering an n8n webhook may be due to the incorrect HTTP method or an unregistered webhook, and switching to the correct method or registering the webhook could resolve the issue.

Guidance

  • Verify that the webhook is correctly registered and the workflow is active in n8n, as the error message suggests the endpoint is not recognized.
  • Check the n8n documentation to ensure the correct HTTP method is being used for the webhook; the provided message indicates a GET request, but the method specified is POST.
  • Review the Azure App Service configuration to ensure it is correctly routing requests to the n8n instance.
  • Test the webhook with a tool like Postman or cURL to isolate the issue and verify the request is being sent correctly.

Example

No code example is provided as the issue seems related to configuration or method usage rather than code implementation.

Notes

The solution may depend on the specific n8n version and Azure App Service configuration, which are not detailed in the issue. Additionally, ensuring the webhook URL and credentials are correct is crucial.

Recommendation

Apply workaround: Verify and correct the HTTP method and webhook registration, as these are the most likely causes of the 404 error, and directly address the symptoms described.

Vote matrix · Quick signals

Works
Did the solution work? Tap to confirm.
Easy Fix
Was it a quick fix?
Time Saver
Did it save you time?
Blocking
Was it severely blocking?
Common Issue
Are others likely hitting this too?
Flaky / Intermittent
Is it intermittent?
Verified / Reproducible
Can you reproduce it reliably?
Loading…

Still need to ship something?

×6

Another batch ranked right after the header list — different links, same matching logic.

Back to top recommendations

TRENDING