SDK Tokens

To securely authenticate users of your frontend app.

Tokens enable clients to send personal data to ComplyCube via our SDKs. They are JWTs.

Each token is confined to one client and expires after 60 minutes, so you can safely use them at the front end of your application.

The generated token takes the following form: {"token": "header.payload.signature"}.

You must generate a new token each time you initialize the ComplyCube SDKs.

The Token object

AttributeTypeDescription

token

string

The client-specific token. It expires after 60 minutes.

Last updated