Appearance
HTTP Redirect
You do not typically need to use this task in addition to the HTTP Response task. If you are using both, it is best to set up filters to decide which one is used by the endpoint.
The HTTP Redirect task is typically the last task in an endpoint, and is responsible for forwarding the user to a new page or website after the endpoint completes. An example of its use may be sending the user to a Thank You page after they fill out a survey on your website.
This task required a Redirect URL
and a JSON body. The redirect url is where the user will be sent to after the endpoint completes. This should be a full URL, including the http://
or https://
prefix. For example: https://www.example.com/surveys/thankyou.html
In most cases, you can simply use an empty object ({}
) for the body, unless you know that you need to include data here.