Credit Card
The Credit Card library is a lightweight JavaScript library that provides an embeddable, secure credit card form for your payment websites.
Installation
Include the SDK in your HTML by adding a <script>
tag:
Getting Started
Once the library is loaded, you can instantiate the library class and mount the card form into your page. The class provides methods for mounting the form, validating input, and submitting the form.
Instantiating the Library
Create a new instance of the library by passing a configuration object. The configuration options include:
containerId
: An element where the form will be rendered.
Mounting the Form
Call the init()
method to render the card form inside the specified container.
Using the Library
The library exposes two primary methods to interact with the credit card form:
Card Form Validation
Use the validateCard()
method to trigger form validation. This method returns a Promise that resolves to true
if there are no validation errors.
Submit Form
You can call the submit()
method to submit the form. This method will execute the previous validateCard()
method before submitting the form, thus will return the same response if the form has validation errors.
If the form has no validation errors, the method will proceed with submitting the card form, and will redirect to the provider page.
This method requires the following argument:
id
A string of Leanx
transaction_invoice_no
. You can get this from the response of silent bill endpoint.
In a production environment, ensure that the payment_service_id
is set to 1100
when generating a silent bill for use with credit card library.
API Reference
LeanxCC Class
The LeanxCC
class provides a simple interface to embed and interact with the credit card form.
Constructor
Create a new instance of the library by passing an options object.
Options
containerId
string
A string of an HTML Element id
Methods
init()
Renders credit card form into the specified container.
Usage Example:
validateCard()
Triggers the form validation. This method returns a Promise that resolves with true
if the form is validated, or throw an exception containing an error object.
Usage Example:
Error Code:
cc-form-validation
Card form has validation error.
submit(id)
This method will validate, submit, then redirect to provider.
id
Usage Example:
Error Code:
cc-form-validation
Card form has validation error.
id-required
Missing argument id
.
invalid-id
Invalid transaction_invoice_no
value.
Last updated