Share Token User Register
Brief Description: Share Token User Registration
Request Method: POST /open/api/kyc/share/userToken
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 |
Request 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 |
Example Request Parameters
{
"requestNo": "test12567890",
"email": "[email protected]",
"identitySharing": {
"kycProvider": "sumsub",
"shareToken": "_act-jwt-eyXN1Yi5jb20ifQ."
}
}
Example Response Parameters
{
"success": true,
"returnCode": "0000",
"returnMsg": "SUCCESS",
"extend": "",
"data": {
"requestNo": "te7890",
"accessToken": "ACH618466CYe+9hiRtR0tSClizKA==",
"email": "9Qv/ZH+Addg2H2OrirK7Ig6pI="
},
"traceId": "671b0cb812f8a232e0cd33adff6fff55"
}
Updated 2 months ago