POST
/
api
/
v1
/
kyc
/
import-partner-applicant
Retrieve a KYC Sharing Token for Sumsub Partners
const url = 'https://api.gnosispay.com/api/v1/kyc/import-partner-applicant';
const options = {
  method: 'POST',
  headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
  body: '{"forClientId":"CoolCoinLtd","ttlInSecs":600}'
};

try {
  const response = await fetch(url, options);
  const data = await response.json();
  console.log(data);
} catch (error) {
  console.error(error);
}
{
  "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