3 Party Redirect

{{platform.Paragraph_4}}

To process a transaction using this method, the cardholder's browser must be directed to the appropriate URL using either a hyperlink or HTTP 302 redirect. In both cases, two values are required to be included:

Hyperlink example

Render a link on your page similar to the following - this will direct the cardholder to the Hosted Payment Page

<a href="https://{{domain}}/{{platform.Payment_Url}}/{{{platform.MerchantAlias}}}?in_pay_token={authKey}">Proceed to payment</a>

Redirect example

Send the following HTTP 302 Redirect to the cardholder's browser - this will direct the cardholder to the Hosted Payment Page

HTTP/1.1 302 Found
Cache-Control: private,no-store,no-cache,must-revalidate,proxy-revalidate
Pragma: no-cache
Location: https://{{domain}}/{{platform.Payment_Url}}/{{{platform.MerchantAlias}}}?in_pay_token={authKey}