POST api/Biometric/Update
Update the enrolled biometric data of a member..
Request Information
Body Parameters
BiometricRequestName | Description | Type | Additional information |
---|---|---|---|
CustomerKey |
Customer-specific key provided by the vendor. |
string |
Required |
EngineName |
The biometric modality for which the customer subscribed. The engine name for face biometrics is "FACE01". |
string |
Required |
RegistrationID |
The unique identifier (Member ID) of the biometric enrollment that the requested operation will be performed on. |
string |
Required. |
BiometricXml |
The biometric template with XML formatting. The template data should be a base64 encoded string of the original face image. The number of face images might be 1 to 3. When use only one image, use the SOURCE='FRONT' one. Supported image formats: JPG, BMP, PNG |
string |
Required. |
Request Formats
application/json, text/json
{ "CustomerKey": "8CCDDB51-D62D-4F45-AE84-E140CB14C342", "EngineName": "FACE01", "RegistrationID": "Jhon123", "BiometricXml": "<IMAGES>\r\n <IMAGE TYPE='FACE' SOURCE='FRONT' FORMAT='JPEG'>base64String of Face image</IMAGE>\r\n <IMAGE TYPE='FACE' SOURCE='LEFT' FORMAT='JPEG'>base64String of Face image</IMAGE>\r\n <IMAGE TYPE='FACE' SOURCE='RIGHT' FORMAT='JPEG'>base64String of Face image</IMAGE>\r\n</IMAGES>" }
application/xml, text/xml
<BiometricRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/M2SYS.Cloud.FaceAPI"> <BiometricXml> <IMAGES> <IMAGE TYPE="FACE" SOURCE="FRONT" FORMAT="JPEG">base64String of Face image</IMAGE> <IMAGE TYPE="FACE" SOURCE="LEFT" FORMAT="JPEG">base64String of Face image</IMAGE> <IMAGE TYPE="FACE" SOURCE="RIGHT" FORMAT="JPEG">base64String of Face image</IMAGE> </IMAGES> </BiometricXml> <CustomerKey>8CCDDB51-D62D-4F45-AE84-E140CB14C342</CustomerKey> <EngineName>FACE01</EngineName> <RegistrationID>Jhon123</RegistrationID> </BiometricRequest>
Response Information
Operation-specific OperationResult
values:
Update: SUCCESS - Update successful. (The biometric data associated with requested Member ID was updated in system.)
Update: FAILED - Update Failed.
Update: ID_NOT_EXIST - The Member ID doesn't exist in the system.
Update: POOR_IMAGE_QUALITY - The submitted face image(s) were not good enough quality to fulfill the request.
Identify: MATCH_FOUND - Match found. (The submitted biometric data matched that of an enrolled member.)
General OperationResult
values:
INVALID_TEMPLATE: The submitted BiometricXml was not correctly formatted.
CUSTOMER_INFO_NOT_FOUND: The specified CustomerKey was not found in the system. Please contat your vendor for assistance.
INVALID_ENGINE: The specified EngineName was not valid.
INVALID_REQUEST: The submitted request was not correctly formatted.
LICENSE_ERROR: A system license limitation prevented your request from being fulfilled. Please contact your vendor for assistance.
INTERNAL_ERROR: An unexpected system error was encountered. Please contact your vendor for assistance.
CACHE_NOT_AVAILABLE: The requested record is not available in the system. Please contact your vendor for assistance.
Resource Description
MatchingResultName | Description | Type | Additional information |
---|---|---|---|
CustomerID |
Customer Key that was used to make the request. |
string |
None. |
OperationName |
Name of operation that was requested. |
OperationNameEnum |
None. |
Status |
The operation execution status. |
EnumOperationStatus |
None. |
OperationResult |
The result of the operation. |
string |
None. |
Response Formats
application/json, text/json
{ "CustomerID": "8CCDDB51-D62D-4F45-AE84-E140CB14C342", "OperationName": "5", "Status": "1", "OperationResult": "SUCCESS" }
application/xml, text/xml
<MatchingResult xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/M2SYS.Cloud.FaceAPI"> <CustomerID>8CCDDB51-D62D-4F45-AE84-E140CB14C342</CustomerID> <OperationName>5</OperationName> <OperationResult>SUCCESS</OperationResult> <Status>1</Status> </MatchingResult>