airwallex-payment-elements
This airwallex-payment-elements library is a lightweight javascript SDK that allows merchants to conveniently integrate the Airwallex checkout flow on their website.
Check out our demo here.
How it works
Merchants can integrate airwallex-payment-elements in the checkout page on their site. For every checkout, merchants should create a PaymentIntent entity through the Airwallex API to process payments with Airwallex.
Once the PaymentIntent is successfully created via API integration, the API will return a response with a unique ID and client secret for the intent. Merchants can then use these two keys to enable the payment elements to collect payment attempt details.
Payment Methods
The package includes different payment processing elements that will allow merchants ot accept payments on their site. We have 6 different checkout elements:
- Hosted Payment Page (HPP): Merchants can accept payments without the full handling of the payment processing and display of the payment options.
- Drop in: Merchants can accept payments without full responsibility of handling their payments but can still control the overall look and feel of their payment page.
- Embedded Fields (Elements): A set of prebuilt UI components, like inputs and buttons that Merchants can directly place in their checkout flow (more below)
- Full Featured Card
- Split Card
- Wechat Element
The primary focus of this library is Elements, which enables Merchants to collect sensitive information (PCI) using customizable UI elements. This library also provides a single interface for interacting with the Payment Request API, allowing for the tokenization of sensitive information and handling of 3D secure authentication flows.
Elements includes the following features:
- Automatic formatting of card information in the input field
- Customize placeholders to fit Merchant UX/UI designs
- Responsive design
- Flexible/Customizable styling to match the look and feel of the Merchant's checkout flow
Installation
Install with Yarn
yarn add airwallex-payment-elements
Or, with NPM
npm install airwallex-payment-elements
Getting Started with the Airwallex Card Element
The Card element is one of Airwallex's most popular payment integration. It is a single line multi-input field containing card number, card expiry, and card cvc.
Detailed Card integration guide here. More extensive documentation details below
Initialize Airwallex:
import Airwallex from 'airwallex-payment-elements';
Airwallex.loadAirwallex({
env: 'demo',
});
Create a container for your payment element in HTML:
<div id="card"></div>
<div id="submit">Submit</div>
Then create and mount your payment element in Javascript:
const cardElement = Airwallex.createElement('card', {
intent: {
id: 'replace-with-your-intent-id',
client_secret: 'replace-with-your-client-secret',
},
});
cardElement.mount('card');
Add an event handler to the button to trigger payment confirmation
document.getElementById('submit').addEventListener('click', () => {
Airwallex.confirmPaymentIntent({
element: card,
id: 'replace-with-your-intent-id',
client_secret: 'replace-with-your-client-secret',
}).then((response) => {
window.alert(JSON.stringify(response));
});
});
}
Add onReady
, onChange
, onSuccess
, and onError
event listeners to handle various events received from the Airwallex Payment server.
window.addEventListener(EVENT_TYPE, (event) => {
window.alert(event.detail);
});
Documentation
See the documentation for Airwallex functions here, or for more specific payment integrations:
Integration
Each payment processing method requires different customizations. Check out our examples of web integrations with the airwallex-payment-demo library.
Sandboxes
You also can play around with different elements in our framework specific sandboxes below. They're all based off the airwallex-payment-demo repository!
We want to provide you with a seamless experience integrating with our platform. Let us know if you run into any problems, or have any comments and suggestions for us. We value your input!