Dear all,
I see different threats with questions on a Softr (Form) to Make.com webhook with a webhook response back to Softr Form with a redirect URL. But I cannot make it work, the user is not redirected… could someone post the complete “guide”? See some hint below (Now with google.com url for testing) in the end I will make a redirect to a Stripe payment intent…
My make scenario: (wit Webhook to make in Softr Form)
I also tried putting in the custom Header with Key: Content-Type and value: application/json but did not solve it…
In the Custom code footer of my form1 page:
<script>
window.addEventListener('submit-form-success-form1', (e) => {
const response = e.detail.response || {};
const data = response.data;
if (data && data.redirect) {
window.location.href = data.redirect;
}
});
</script>
What do i do here? (not my main problem i think…)


