Submit basic information

Submit user basic information.

Http method and path
  • POST /open/api/kyc/share/information
Http body
ElementMandatoryData TypeRemarks
requestNoYstringRequest ID (must be unique)
emailYstringEmail (must be unique)
kycPlatformYstringkyc Platform
holderTypeYstring1: Personal
callbackUrlYstringCallback Url
+individualInfoYobjectidentity information
└firstNameYstringfirstName
└lastNameYstringlastName
└dobYstringDate of birth:YYYY-MM-DD
└countryYstringcountry,three-digit country code,eg:USA
└genderYIntegergender 1: man 2: woman
└idDocTypeYstringcertificate type 1:ID Card 2:Passport 3:RESIDENCE_PERMIT 4:DRIVERS
└numberYstringID number
└validUntilYstringDocument expiration date, format: YYYY-MM-DD. If it is valid indefinitely, please enter 2099-01-01.
└ipAddressYstringip address
+addressYobjectaddress information
└countryYstringcountry
└stateYstring
└cityYstringcity
└addressYstringaddress
└zipCodeYstringpostcode
└ssnYstringIf the country is the United States, Social Security Number (SSN) is required.
Request Example
{
    "requestNo": "222222",
    "email": "[email protected]",
    "kycPlatform": "123",
    "holderType": "1",
    "callbackUrl":"https://google.com",
    "individualInfo": {
        "firstName": "213",
        "lastName": "213",
        "dob": "2023-01-01",
        "country": "US",
        "gender": "1",
        "idDocType": "1",
        "number": "123",
        "validUntil": "2023-01-02",
        "ipAddress": "123",
        "address": {
            "country": "USA",
            "state": "213",
            "city": "213",
            "address": "123",
            "zipCode": "123",
            "ssn": "123"
        }
    }
}
Response Parameter
Data TypeData TypeRemarks
successbooleanSuccess flag
errorbooleanflag
msgstringmessage
codeintegercode
modelObjectdata
traceIdstringtraceId
Response Example
{
    "code": "0",
    "msg": "操作成功",
    "model": null,
    "traceId": "652366764a52596446c629939e486913",
    "success": true,
    "error": false
}
Remarks
  • For more error codes, please refer to the error code descriptions on the homepage.