Smile - Unenroll 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/smile/unenroll
- API Description: Used to delete a user's enrolled biometric information. After successful deletion, the user will not be able to use the deleted biometric feature for identity verification.
Request Parameters
Field Name | Data Type | Max Length | Required | Default Value | Description | Example |
bizId | String | 32 | Yes | - | A unique business ID for tracing purposes. For example, the sequence ID from the merchant's business-related database. Note: ZOLOZ does not validate the uniqueness of this value; the merchant side must ensure the uniqueness of the business ID. | "2017839040588699" |
userId | String | 64 | Yes | - | The user ID to be deleted. Used to specify the user whose enrollment information needs to be removed. This value must match the | "123456abcd" |
Response Parameters
Field Name | Data Type | Always Returned | Description | Example |
result | Yes | The API request result, which contains the result status, result code, and result message. | { "resultStatus": "S", "resultCode": "SUCCESS", "resultMessage": "Success" } | |
transactionId | String | No | The transaction ID returned for this deletion. Note: The system will only return the
| "G000000001FSE2025052300000001218988****" |
unEnrollResult | String | No | Unenrollment result.
| "Success" |
Sample
Request Sample
{
"bizId": "2017839040588699",
"userId": "123456abcd"
}Response Sample
{
"result": {
"resultStatus": "S",
"resultCode": "SUCCESS",
"resultMessage": "Success"
},
"transactionId": "G000000001FSE2025052300000001218988****",
"unEnrollResult": "Success"
}