Share Token User Register
Introduction
Share Token User Registration.
This API only needs to be successfully invoked once and does not need to be called repeatedly. For user login token, please call the Get Token API.
API Description
Request Method: POST
Request Path: /open/api/kyc/share/userToken
Request Parameters
Header Parameters:
| Parameter | Type | Required | Description |
|---|---|---|---|
| appId | String | Yes | Unique identifier for the application |
| timestamp | String | Yes | Current UTC 13-digit timestamp, valid within 5 minutes |
| sign | String | Yes | Signature, signature method can be found here |
Body Parameters:
| Parameter | Required | Type | Description | Example |
|---|---|---|---|---|
| requestNo | Yes | string | Request ID | 2343223323 |
| Yes | string | Email address | [email protected] | |
| identitySharing | Yes | object | ||
| └kycProvider | Yes | string | KYC platform, fixed value "sumsub" | sumsub |
| └shareToken | Yes | string | Sumsub user token | act-jwt-abcddseewr |
Request Parameter Example:
{
"requestNo": "test12567890",
"email": "[email protected]",
"identitySharing": {
"kycProvider": "sumsub",
"shareToken": "_act-jwt-eyXN1Yi5jb20ifQ."
}
}Response Parameters
Response Parameter Example:
{
"success": true,
"returnCode": "0000",
"returnMsg": "SUCCESS",
"extend": "",
"data": {
"requestNo": "te7890",
"accessToken": "ACH618466CYe+9hiRtR0tSClizKA==", //This field has been deprecated.
"email": "9Qv/ZH+Addg2H2OrirK7Ig6pI="
},
"traceId": "671b0cb812f8a232e0cd33adff6fff55"
}The response field accessToken has been deprecated. Please use the Get Token API instead.
Page Integration: Get Token API
API Integration: Get Token API
Updated 7 days ago
