Find User Id by Face
This method is used to find if there's a single Biometrid Id that match the face sent on the request.
Find-by-Face
Headers
Name
Type
Description
Request Body
Name
Type
Description
// Find Id by Face
{
"status": true,
"data": {
"message": "FACE_RECOGNIZED_WITH_SUCCESS"
"verified": true,
"userId": '5be3000bd3adgd3e152724f2',
"confidence": '0.78'
}
}
// Find Id by Face failed.
{
"status": false,
"data": {
"message": "FACE_ENROLLMENT_FAILED",
"reason": "No faces found on 'photo'"
}
}//No photo file detected on request. Not sent or invalid format
{
"status": false,
"data": {
"message": "NO_FILE_OR_INVALID_FORMAT"
}
}
// Missing Headers
{
"status": false,
"data": {
"message": "AUTHENTICATION_HEADERS_MISSING"
}
}Success 200
Last updated
Was this helpful?