I’m trying to redirect user after he/she submits a form on my website to a URL given by a payment processor (it is a payment link). I’m using a wordpress site with Formidable Forms plugins. Unfortunately each attempt to redirect ends with “Scenario failed to complete”.
How to fix it?
The scenario starts with a custom webhook, than make.com performs some API calls and ends with sending a Webhook response.
How to fix it?
Should I redirect to some other URL after form submitting?
Should I add any parameter to the webhook URL?
Should I add some code on my website to execute te redirection?
Does the redirection starts too fast?
I switched the scenario off and on and situation has changed. Now after submitting the form user is redirected to a webhook url with “Accepted” message. No further redirection to a payment link given in a webhook response.
Have you tried simply to return some HTML first before trying the redirect? I am wondering if the Webhook Response is being sent back to the browser after your form invokes the webhook?
I tried the alternative method prompted by @samliew and it didn’t work too. Maybe it means the webhook response isn’t sent back to the browser as @alex.newpath suggested?
I wonder if you send the webhook HTTP link right in your browser you’ll get the response but since the webhook is being sent by your form the response may be coming back ot the form submission on the server rather than back to you in the browser.