Tonder JS SDK
The Tonder JS SDK is a vanilla Javascript solution for integrating our system into your platform. This solution ensures PCI DSS (Payment Card Industry Data Security Standard) by securely collecting and tokenizing sensitive data in the browser, without exposing your front-end infrastructure to any sensitive data.
This guide will walk you through all the steps, from installation and configuring to styling the SDK to fit your website.
Installation
Tonder gives you two ways to install our SDK. You can install our npm package or use script tags directly in your HTML.
Requirements
To configure our SDK you need to add the following script tags to your HTML:
The first tag is mandatory for achieving PCI DSS (Payment Card Industry Data Security Standard), as stated at the top of this page, by using Skyflows’s integration. The other tags are necessary to ensure a reliable connection to the payment processor.
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 |
---|---|
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. |
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. |
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:
Styling
To learn how you can add your own styles to the checkout elements, refer to the SDK Styles page.