A client represents the individual for whom you need to perform various KYC checks. A client is required to generate an SDK token. This must be done in your backend server.
To import our Web SDK, you need to include it in your target page as follows:
<!DOCTYPE html>
<html>
<head>
...
<!-- Importing the Javascript library -->
<script src="complycube.min.js"></script>
<!-- Importing the default CSS -->
<link rel="stylesheet" href="style.css" />
</head>
<body>
<!-- This is where the Web SDK will be mounted -->
<div id="complycube-mount"></div>
</body>
</html>
The links to complycube.min.js and style.css can be found in your developers portal.
Mount the SDK
With the SDK token you generated earlier, the Web SDK can be initialised in your frontend using the following Javascript code:
ComplyCube.mount({ token:'<YOUR_WEB_SDK_TOKEN>', containerId:'complycube-mount', stages: ['intro','documentCapture', { name:'faceCapture', options: { mode:'video' } },'completion' ],onComplete:function(data) {// Using the data attributes returned, request your// backend server to perform the necessary ComplyCube checksconsole.info('Capture complete'); },onModalClose:function() {// Handle the modal closure attempt },onError:function ({ type, message }) {if (type ==='token_expired') {// Request a new SDK token } else {// Handle other errorsconsole.err(message); } }});
The SDK mount parameters are described in the SDK Settings section below.
Your website's Referrer Policy header should be set to `strict-origin-when-cross-origin".
Referrer policy
To enable successful communication between the SDK and our servers, your web page's Referrer Policy header should be set to strict-origin-when-cross-origin. This ensures that the referrer information is securely transmitted during HTTP requests.
You can either do it programmatically or add it directly to the web page as follows:
<meta name="referrer" content="strict-origin-when-cross-origin">
Perform checks
Using the data returned by the SDK, via the onComplete callback, you can now instruct your backend server to run the appropriate checks using the create a check endpoint. For instance, use:
Your client's SDK token. This is a required attribute.
language
The UI language. Valid values include:
en
ar
de
es
fr
hi
hk
id
it
ja
ko
nl
no
pl
pt
sv
th
vi
zh
Default value: en
containerId
A string containing the ID of the container element that the Web SDK will mount to.
This must be an empty element.
Default value: complycube-mount
useModal
This defines whether the UI screens load into a modal or not.
Default value: true
disableClientAnalytics
This defines whether we track client analytics or not.
Default value: false
stages
This is the array of verification stages your clients will go through. Stages can be provided as string values which include : intro, userConsentCapturefaceCapture, documentCapture, poaCapture, and completion.
Stages can be also provided as objects to enable customisations, as explained on the customisations page.
This callback function executes after the client completes the SDK flow. You could then use a function to trigger a check creation on your backend server.
Depending on the stages provided, data may include the following attributes:
documentCapture
documentId: the uploaded identity document unique reference generated by ComplyCube.
documentType: the type of document uploaded.
faceCapture
liveVideoId: the captured video unique reference number generated by ComplyCube, OR;
livePhotoId: the captured photo unique reference number generated by ComplyCube.
poaCapture
documentId: the uploaded ID document unique reference generated by ComplyCube.
documentType: the type of document uploaded.
onModalClose
This callback executes when your client tries to close the modal. You can then decide whether to close the modal or not by toggling the isModalOpenattribute using the updateSettingsmethod, as shown below.
onError
This callback executes when an error occurs. The error object has two attributes:
type: this can be either:
exception
token_expired : indicates the SDK token provided has expired. When this occurs, a new SDK toke must be provided, as shown below.
message: a descriptive message of the error that has occurred.
onExit
This callback executes when your client exits the SDK verification flow prior to completion. The callback returns the exit reason, e.g., USER_CONSENT_NOT_GRANTED.
Updating SDK settings
A number of settings can be updated at runtime as follows:
complycube =ComplyCube.mount({...})// Replace the SDK tokencomplycube.updateSettings({ token:"NEW_SDK_TOKEN" });...// Open the modalcomplycube.updateSettings({ isModalOpen:true });//Close the modalcomplycube.updateSettings({ isModalOpen:false });
Unmounting the SDK
If you are using the SDK within a Single Page Application (SPA), you can call unmount function to remove the SDK and reset its state.