JS Inline Checkout
Tonder’s JS SDK Inline Checkout brings you a easy to integrate, pre-built, customizable interface. This guide will take you step-by-step into integrating it.
If you haven’t installed and pre-configured Tonder’s JS SDK, refer to the Installation guide here.
Configuration
Before initializing an instance of Tonder SDK, ensure that you have configured it properly. Follow the usage example below:
Add the required ID to your HTML
Tonder’s JS SDK needs an entry point to operate. This entry point is defined by adding a tonder-checkout
ID to an empty div
, like the example below:
Initialize Tonder's SDK Instance
Initialize Tonder’s JS SDK instance with the following parameters:
Field | Description |
---|---|
mode | Environment mode. Options: stage , production , sandbox . Default: stage |
apiKey | The API key used for authentication and authorization. |
returnUrl | The URL to which the user is redirected after the checkout process, regardless of success or failure. |
customization | This object is designed to customize the behavior of the checkout. It is used to adjust both the interface options and operational parameters. Refer to the Customizations section for more details. |
styles | Custom styles object that allows you to customize the appearance of the inline checkout. It may include properties such as colors, fonts, and other styling options. Refer to the Styling section for more details. |
Configure checkout method (Optional)
You can use the configureCheckout
method to set initial customer information, such as their email address, allowing to retrieve the respectives user’s saved cards.
Inject checkout method
Call the injectCheckout
method with your inlineCheckout instance, with the code below:
This method will use the element with id tonder-checkout
added in Step 1 to render the checkout elements, as exemplified by the image below:
With this, you can render the checkout to your customers.
Add 3DS verification
Use Tonder’s SDK verify3dsTransaction()
method to validate if the 3DS challenge was successful or not. Use the example below to call the method and handle the response as needed:
Add a pay button
Lastly, you need to create a button to submit the form. This button needs to have an event listener that calls the payment
method from the inlineCheckout
instance, sending the checkout data as payload, like presented below:
Checkout data
The payment function payload needs to be an object with detailed information about the customer, currency and cart. Below you find details abou each needed field:
Checkout data example
Below you find an example of a checkout data object:
Customizations
Tonder’s SDK customization object allows you to personalize the checkout behavior. You can change the following properties:
Styling
To learn how you can add your own styles to the checkout elements, refer to the SDK Styles page.
Full Integration Example
For full integration example codes, refer to the Code Examples page.