Connect - Query Enroll Status API
Important Notice:
- All request and response parameters are strictly subject to the official API documentation.
- The API response may contain fields not defined in the documentation. These fields are for internal debugging purposes only and are not guaranteed to be stable or compatible. Do not rely on these fields in production environments. ZOLOZ reserves the right to modify or remove these fields at any time without prior notice.
Overview
- API URL:
/api/v1/zoloz/connect/queryEnrollStatus - API Description: Used to check the face enrollment status for users.
Structure
Request parameters
Field name | Data type | Max length | Default Value | Description | Example value |
bizId | String | 32 | - | Required. A unique business ID for tracing purposes. For example, the sequence ID from the merchant's business-related database. Note: The ZOLOZ server does not perform uniqueness check on the value of this field. For better tracking, it is strongly recommended to enable the merchant server to guarantee the uniqueness of the business ID. | "201783904058****" |
userId | String | 64 | - | Required. Merchant user ID, or other identifiers that can be used to identify a specific user. For example, mobile phone number, email address and so on. It is strongly recommended to pre-desensitize the value of the userId field; for example, by hashing the value. | "123456abcd" |
Response parameters
Field name | Data type | Description | Example value |
result | Required. The API request result, which contains information about the result of the API request, such as status and error codes. | { "resultStatus": "S", "resultCode": "SUCCESS", "resultMessage": "Success" } |
Result
Field name | Data type | Description | Example value |
resultStatus | String | Required. Result status. Possible values and their meanings are as below:
| "S" |
resultCode | String | Result codes:
| "SUCCESS" |
resultMessage | String | Required. Result message. | "success" |
Sample
Request Sample
{
"bizId": "201783904058****",
"userId": "123456abcd"
}Response Sample
{
"result": {
"resultStatus": "S",
"resultCode": "SUCCESS",
"resultMessage": "Success"
}
}