🔍Step 2 - User KYC

Once, the account is created, the user must perform a KYC (a compliance process called "Know You Customer"). The KYC status will allow the user to access all the features and to activate his Account.

The User will need to login to his account in order to start the KYC procedure. This action will be performed using:

get
Authorizations
Responses
200

OK

*/*
get
GET /v1/kyc/start HTTP/1.1
Host: 
Authorization: Bearer YOUR_OAUTH2_TOKEN
Accept: */*
200

OK

{
  "success": true,
  "data": {
    "identificationUrl": "text",
    "userId": "text",
    "phoneNumber": "text",
    "numberOfAttempts": 1,
    "identificationId": "text"
  },
  "errorCode": 1,
  "errorMessage": "text"
}

This will automatically return an url to start the process. Once finished, according to the result of the KYC, the Account will be activated.

Please note that sometimes, the KYC will not be performed correctly, it is possible to activate manually an Account.

For this case, please contact your account manager. He will be able to activate the account for you.

OAuth: user_auth

Last updated