The afterpay.js is used to launch the Clearpay screenflow, where the consumer logs in (or registers) then confirms their payment schedule.
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.
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.
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.
redirectConfirmUrl, with the orderToken and a status of “SUCCESS” appended as HTTP query parameters.redirectCancelUrl, with the orderToken and a status of “CANCELLED” appended as HTTP query parameters.The Merchant defines the redirectConfirmUrl and redirectCancelUrl 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 required token property. This property must contain the checkout token returned by Create Order.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.