I have a webhook connected to a form. When this form is submitted, i arrive at the “accepted” page. I’ve tried every solution i could find, but nothing seems to work.
I have used the “Webhook response” module, and tried adding a redirect from there, but that didn’t work. It only added the desired URL after the “hook.eu2.com” URL.
Yes, it it triggering. I have tested and found out that the redirect worked on a test-scenario where i only had a webhook + webhook response. But, when i used the same form in my main scenario, it wont work
Redirecting after a webhook in Make can be tricky since webhooks aren’t meant to handle browser redirects directly. The “Webhook response” module can return data, but not a full HTTP redirect like a 302. Instead, try handling the redirect logic client-side (e.g., with JavaScript after form submission), or redirect from your server before triggering the webhook.