Hello,
I’m trying to set up a workflow in n8n that should be triggered by a webhook. Our application sends out webhooks, adding a path to the webhook endpoint URL. For example “/element” for POST Requests and for other Requests “/element/”.
Even when specifying an additional path, n8n is not able to receive webhooks from our application.
Already tested/checked for other HTTP methods, tried setting up webhook for both test n8n URL and production URL.
In our application log we get 404 errors as response.
Any idea what we could do, to make n8n receive our application’s webhooks?
Using n8n cloud Version 1.99.1.
Thank you!
Hey @NielsZ123 ,
What trigger node are you using exactly ?
Double Webhook Nodes for Both Variants
- Create two Webhook nodes:
- One with
/element
as the path.
- Another with
/element/
as the path.
- Both can be in the same workflow or separate workflows.
Example: Webhook Node Setup
Path: /element
HTTP Method: POST
Then create a second Webhook node:
Path: /element/
HTTP Method: POST
Hi @abhishekpatoliya ,
Thanks for your reply.
Yes, I can try that as well, but it is already not working with one webhook, with adding “/element” in Path field when editing webhook or"/element/" but not at the same time…
Hi @mrrobot ,
Thank you for your reply.
I use the “Webhhook” option “Starts the workflow when a webhook is called” when searching trigger steps. If I understood your question correctly…