Payvision Checkout javascript customization library.
Checkout.js is a javascript library to easily embed Payvision checkout into your website. We directly send customers sensitive data to Payvision's servers so cardholder data does not hit your server, reducing PCI compliance requirements. Additionally, you can use the library to customize the checkout layout with your own styles.



[ ⚠ HTTPS protocol is required ]
> Install Checkout npm package from Payvision repository:
``bashwith npm package manager
npm i @payvision/checkout-library
$3
Import the library from Payvision CDN:
`html
src="https://cdn.payvision.com/checkout/1.2.0/checkout-library.js"
integrity="sha384-EY45vPLgYiHuuQOzW+lJzVl0h7uQAAfy3Nxlfhjfwap1QrvXXD8R9RqSl9i0BG9L"
crossorigin="anonymous"
>
`Note that:
Use corresponding integrity "sha384-EY45vPLgYiHuuQOzW+lJzVl0h7uQAAfy3Nxlfhjfwap1QrvXXD8R9RqSl9i0BG9L" to ensure subresource integrity.
Use of library
> Create an HTML element as the container for the checkout. The container id will be used to embed the checkout using the library.
`html
`> Import the library in your javascript code
`javascript
import Checkout from '@payvision/checkout-library'
`> Get a checkout id via API.
`javascript
const checkoutId = '6741b7d4-f413-4c98-8f5a-724f7d3192f7' // Retrieved from Checkout API
`> Create the checkout custom options object (not required).
`javascript
const options = {
live: true,
styles: {
imageUrl: 'Logo Url',
autoHeight: false,
generalStyles: {
backgroundColor: '#f6f7fb',
fontFamily: 'Source Sans Pro',
fontFamilyUrl: 'Font family url',
primaryThemeColor: '#213d8f',
accentThemeColor: '#909ec7',
secondaryThemeColor: '#909ec7',
infoThemeColor: '#1db9de',
warningThemeColor: '#fec61f',
errorThemeColor: '#e6493a',
successThemeColor: '#35ba6d',
},
formStyles: {
backgroundFormColor: '#ffffff',
backgroundFormContainerColor: '#ffffff',
fontSize: '14px',
borderWidth: '1px',
borderRadius: '2px',
},
paymentButtonStyles: {
fontSize: '16px',
borderWidth: '1px',
borderRadius: '2px',
fontColor: '#ffffff',
backgroundColor: '#8ec03f',
borderColor: '#8ec03f',
},
iframe: {
width: '100%',
height: '780px',
},
},
}
`> Create the checkout object with parameters from above.
`javascript
const checkout = new Checkout(checkoutId, 'checkout-container', options)
`> use render method to display the checkout in checkout container HTML element.
`javascript
checkout.render()
`Options
| | Type | Description |
| ---------- | ------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| live | boolean | The target environment [false: staging (default), true: production] |
| events | object |
- onReady: Function emitted when the checkout is ready.
- onSuccess: Function emitted when the checkout is completed.
- onError: Function emitted when an error has occurred.
|
| styles | object | - imageUrl: 'Logo Url'
- autoHeight: [false]
- generalStyles
- fontFamily [_'"Source Sans Pro", "Arial", "Verdana"'_]
- fontFamilyUrl [' ']
- backgroundColor[_'#f6f7fb'_]
- primaryThemeColor[_'#213d8f'_]
- accentThemeColor[_'#909ec7'_]
- secondaryThemeColor[_'#909ec7'_]
- infoThemeColor[_'#1db9de'_]
- warningThemeColor[_'#fec61f'_]
- errorThemeColor[_'#e6493a'_]
- successThemeColor[_'#35ba6'_]
- formStyles
- backgroundFormColor[_'#ffffff'_]
- backgroundFormContainerColor[_'#ffffff'_]
- fontSize[_14px_]
- borderWidth[_1px_]
- borderRadius[_2px_]
- paymentButtonStyles
- fontColor[_'#ffffff'_]
- backgroundColor[_'#8ec03f'_]
- borderColor[_'#8ec03f'_]
- fontSize[_16px_]
- borderWidth[_1px_]
- borderRadius[_2px_]
iframe - width ['100%']
- heigth ['780px']
|\*_[Default parameters]_
Environments
You can configure the library for development purposes if set the
option.live to false. If you want to release your build to production you have to set the target to live environment with the option.live` set to true.| Environment | Url |
| ----------- | ---------------------------------------------------------------------- |
| Live | https://connect.acehubpaymentservices.com/gateway/v3/web/checkouts |
| Staging | https://stagconnect.acehubpaymentservices.com/gateway/v3/web/checkouts |
Checkout.js provides the following helper methods to manipulate Checkout UI.
| Method | Parameters | Description | Example |
| ------------ | ---------- | ------------------- | -------- |
| show() | none | Displays Checkout | show() |
| hide() | none | Hides Checkout | hide() |
| render() | none | Renders Checkout UI | render() |
Checkout.js provides the following helper methods to manipulate Checkout UI.
| Method | Parameters | Description | Example |
|-------------------- |-------------- |-------------------------------- |------------------------------------------------------------------------------------------------------------------------------------- |
| onReady | Checkout | Checkout ready to be displayed | onReady: checkout => checkout.show() |
| onError | Error | Error in checkout | onError: error => console.log(error.message) |
| onSuccess | Redirect | Checkout completed | onSuccess: redirect => redirect.method === 'GET' ? window.location.assign(redirect.url) : submitForm(redirect.url, redirect.fields) |
| onMobileIntent | MobileIntent | Mobile intent dispatched | onMobileIntent: intent => launchMobileIntent(intent) |
|
IE / Edge |
Firefox |
Chrome |
Safari |
iOS Safari Opera |
| --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| IE11, Edge | last 2 versions | last 2 versions | last 2 versions | last 2 versions |
Payvision © 2020