In order to be boarded every Merchant needs to agree to Go Plus Terms and Conditions. To help Developers integrate Agreement API into their website we are supporting Agreement API through Cardknox iFields.
Step 1: Check the latest stable iFields version here: https://cdn.cardknox.com/ifields/versions.htm
Step 2: Add the ifields.js file after the <head> tag on your website:
<script src=https://cdn.cardknox.com/ifields/**ifields-version-number**/ifields.min.js></script>
Step 1: Add the following iFrame JS snippet inside the <body> where Merchant Agreement is desired.
Make sure you have an attribute data-ifields-id="agreement"
as part of <iframe> tag
<iframe id="agreement" class="agreement" data-ifields-id="agreement" src="https://cdn.cardknox.com/ifields/**ifields-version-number**/agreement.htm"></iframe>
Step 2: Create JavaScript function to handle Agreement API callback
For response
object reference refer here: Agreement Response
Step 3: Enable Customer Agreement to get the token
There are two ways to get the token:
Asynchronously (a callback will be performed once the customer agrees to Terms and Conditions)
Just add enableAgreement
call when the document is loaded (autoAgree
the parameter is set to true
):
Synchronously (Explicitly calling getToken
function for example on Submit)
Add enableAgreement
call when the document is loaded (autoAgree
the parameter is set to false
):
In your Submit
function add the following code:
The object holding the response with token from Agreement API.
Name
Type
Description
status
There are 2 possible cases:
Agreement was accepted and Token was obtained status=iStatus.success
Agreement wasn’t accepted or an error occurred obtaining the token: status=iStatus.error
statusText
String
When status=iStatus.error
this field will be populated with the reason
token
String
When status=iStatus.success
this field will be populated with token