Production
https://portal.afterpay.com/afterpay.js
Sandbox
https://portal.sandbox.afterpay.com/afterpay.js
The afterpay.js
is used to launch the Clearpay screenflow, where the consumer logs in (or registers) then confirms their payment schedule.
Note
Before this JavaScript can be used, the merchant must call Create Order from their server backend and retrieve an order token. The token is then used in conjunction with this JavaScript to launch the Clearpay screenflow.
Note
It is only after the consumer completes the Clearpay screenflow and returns to the merchant's website that a subsequent Capture Payment call can be completed.
Redirect Method
The Redirect Method is used by some merchants. This method redirects the consumer away from the merchant's website to Clearpay to complete their payment. At the end of the process, the consumer will be redirected back to the merchant's website.
- If the Consumer clicks "confirm", they will be redirected to the
redirectConfirmUrl
, with theorderToken
and astatus
of "SUCCESS" appended as HTTP query parameters. - If the Consumer cancels, they will be redirected to the
redirectCancelUrl
, with theorderToken
and astatus
of "CANCELLED" appended as HTTP query parameters.
The Merchant defines the
redirectConfirmUrl
andredirectCancelUrl
for each order in their Create Order call.
To implement the Redirect Method, the following two JavaScript functions must be called:
-
Clearpay.redirect
- This redirects the consumer's browser from the merchant's website to Clearpay. This function accepts one required argument: an object with a requiredtoken
property. This property must contain the checkout token returned by Create Order.
<html>
<head>
<script onload="initAfterPay()" src="https://portal.sandbox.afterpay.com/afterpay-async.js" async defer></script>
</head>
<body>
<p>Your HTML here</p>
<script>
function initAfterPay () {
AfterPay.initialize({countryCode: "GB"});
AfterPay.redirect({token: "YOUR_TOKEN"});
}
</script>
</body>
</html>
Try using your Sandbox Merchant credentials to obtain a token from Create Order, then use the token to test the Clearpay screenflow on JSFiddle:
https://jsfiddle.net/afterpay/we9xfqgm/
Note that since JSFiddle loads the Clearpay screenflow inside a frameset, the login and redirect features will not be operational.