Checkout

The checkout.min.js JavaScript library allows simple payment integrations for merchant sites.

Functions

Prepare the library before payment.
Show a hosted payment form embedded into the merchant site.
Redirect to a hosted payment page to complete payment.
A default implementation of a beforeRedirect callback.
A default implementation of an afterRedirect callback.

Callbacks

Invoked when errors occur during payment.
Invoked when payment has been completed.
When the payer cancels the payment interaction. Note: Cancel callback can only be used with payment page, it will not work with embedded page.
Invoked when the payment is not completed within the duration available to the payer to make the payment.
Invoked before browser is redirected away from page.
Invoked when browser returns to page after redirect.

Example

<html>
    <head>
        <script src="https://paymentgateway.commbank.com.au/static/checkout/checkout.min.js"
                data-error="errorCallback"
                data-cancel="cancelCallback">
        </script>
    
        <script type="text/javascript">
            function errorCallback(error) {
                  console.log(JSON.stringify(error));
            }
            function cancelCallback() {
                  console.log('Payment cancelled');
            }
        
            Checkout.configure({
                session: {
                    id:  '<your_initiate_checkout_session_ID>'
                }
            });
            
        </script>
    </head>
    <body>
        ...
    
        <div id="embed-target"> </div>
        <input type="button" value="Pay with Embedded Page" onclick="Checkout.showEmbeddedPage('#embed-target');" />
        <input type="button" value="Pay with Payment Page" onclick="Checkout.showPaymentPage();" />
    
        ...
    </body>
</html>

Copyright © 2023 Commonwealth Bank of Australia