Skip to main content
POST
/
api
/
v1
/
kyc
/
import-partner-applicant
Retrieve a KYC Sharing Token for Sumsub Partners
const options = {
  method: 'POST',
  headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
  body: JSON.stringify({forClientId: 'CoolCoinLtd', ttlInSecs: 600})
};

fetch('https://api.valox.co/api/v1/kyc/import-partner-applicant', options)
  .then(res => res.json())
  .then(res => console.log(res))
  .catch(err => console.error(err));
{
  "token": "<string>",
  "forClientId": "<string>"
}

Authorizations

Authorization
string
header
required

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

Body

application/json
forClientId
string
Example:

"CoolCoinLtd"

ttlInSecs
number
Example:

600

Response

Successfully retrieved Sumsub's reusable token.

token
string
forClientId
string