Open an external website using a workflow

I need assistance in opening an external website using a workflow.

I have a payment API endpoint that returns an authorization URL:

image

The response returns an authorization URL:
image

In the next workflow step, I need to automatically transfer the user to the URL to initiate a payment.
I tried the “change page” action with the path set as the authorization URL but it is not working.

I can see that the value of the path is the correct URL but the frontend does not transfer the user to the payment page, which must look like this:

I know that the URL works because if I paste it in the browser address, it works but I need to do this automatically using the workflow as the URL changes per user (not a static URL).

Please assist.

Hello,

We don’t have a native action to redirect to an external link. You can use our action “custom Javascript” and write this code: Window.open()

2 Likes

Thank you for the tip. It works perfectly as intended; much appreciated.
I do not have coding experience but now I am learning!

2 Likes