Retrieve User Information

Request Path

/open/api/user/core/queryUserInfo

Request Method

POST

Parameter Description

Parameter NameRequiredTypeDescriptionLengthExample
userNumYesstringUser number64100516923407528221713
merchantNoNostringMerchant number64NFT0001
subMerchantNoNostringSub-merchant number64a01a123
businessSubcategoriesNostringBusiness subcategories32VSR

Request Example

{
    "userNum": "100516923407528221713",
    "merchantNo": "NFT0001",
    "subMerchantNo": "a01a123",
    "businessSubcategories": "VSR"
}

Response Parameters

Parameter NameTypeDescription
userNumListUser number
documentInfoListListList of user documents
addressInfoListListList of user addresses
nameHistoryInfoListListList of user name records
extendInfoListListList of user extended information

User Document List [UserDocumentInfoResponse]

Parameter NameTypeDescriptionExample
firstNamestringFirst nameJohn
lastNamestringLast nameDoe
idDocTypestringDocument type (1=ID Card, 2=Passport, 3=RESIDENCE_PERMIT, 4=DRIVERS)1
validUntilstringValid until2025-06-04
dobstringDate of birth2000-06-04
numberstringID card number / permit number / passport number130929199003016238
additionalNumberstringAdditional document numbernull
facePhotostringFace photo linkhttp://***/photo.png
documentPhotostringDocument photo linkhttp://***/document.png
documentBackPhotostringDocument back photo linkhttp://***/back_document.png
sourcePlatformstringSource (1: Sumsub, 2: Jumio, 3: Persona)1

User Address List [UserAddressInfoResponse]

Parameter NameTypeDescriptionExample
countrystringCountryUnited States
streetstringStreetnull
citystringCitynull
statestringStatenull
zipCodestringZip codenull
addressstringAddressnull
sourcePlatformstringSource (1: Sumsub, 2: Jumio, 3: Persona)1
createTimestringCreation time2023-08-18T06:39:12.000+0000

User Name History List [UserHistoryInfoResponse]

Parameter NameTypeDescriptionExample
firstNamestringFirst nameJohn
lastNamestringLast nameDoe
genderstringGendernull
createTimestringCreation time2023-08-18T06:39:13.000+0000

User Extended Information List [UserExtendInfoResponse]

Parameter NameTypeDescriptionExample
extendKeystringExtended keyname
extendValuestringExtended valueJohn
describesstringDescriptionName

Response Example

{
  "code": "0",
  "msg": "成功",
  "model": {
    "userNum": "100516923407528221713",
    "documentInfoList": [
      {
        "firstName": "文学",
        "lastName": "杨",
        "idDocType": "1",
        "validUntil": "2025-06-04",
        "dob":"2000-06-04",
        "number": "130929199003016238",
        "additionalNumber": null,
        "facePhoto": null,
        "documentPhoto": null,
        "documentBackPhoto": null,
        "sourcePlatform": "1"
      }
    ],
    "addressInfoList": [
      {
        "country": "美国",
        "street": "",
        "city": null,
        "state": null,
        "zipCode": null,
        "sourcePlatform": "1",
        "createTime": "2023-08-18T06:39:12.000+0000"
      }
    ],
    "nameHistoryInfoList": [
      {
        "firstName": "文学",
        "lastName": "杨",
        "gender": null,
        "createTime": "2023-08-18T06:39:13.000+0000"
      },
      {
        "firstName": "wen xue",
        "lastName": "yang",
        "gender": null,
        "createTime": "2023-08-18T08:25:41.000+0000"
      },
      {
        "firstName": "泱",
        "lastName": "张",
        "gender": null,
        "createTime": "2023-08-18T10:14:46.000+0000"
      }
    ],
    "extendInfoList": [
      {
        "extendKey": "name",
        "extendValue": "1",
        "describes": "名称"
      },
      {
        "extendKey": "age",
        "extendValue": "1",
        "describes": "年龄"
      }
    ]
  },
  "traceId": "64e879ab20d696d4461b0c222f09fa1d",
  "success": true,
  "error": false
}