Skip to main content
GET
/
api
/
v1
/
kyc
/
integration
/
sdk
Retrieve Access Token for Sumsub SDK Integration
const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};

fetch('https://api.valox.co/api/v1/kyc/integration/sdk', options)
  .then(res => res.json())
  .then(res => console.log(res))
  .catch(err => console.error(err));
{
  "type": "SUMSUB_SDK",
  "token": "<string>",
  "userId": "<string>"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Query Parameters

lang
string

Optional language code in ISO 639-1 format (2 letters) to force the KYC flow language. If not provided, SumSub will use its own rules to determine the language.

Example:

"en"

Response

The KYC integration specification.

type
enum<string>
required

The type of the KYC integration.

Available options:
SUMSUB_SDK
token
string
required

The token that needs to be used to follow through the SumSub KYC flow.

userId
string
required

The user ID.