Face Query
This Face Query API contains the information of Face Query on searching any existing face image in the database.
Last updated
This Face Query API contains the information of Face Query on searching any existing face image in the database.
POST https://okaydocdemo.innov8tif.com/ekyc/api/innov-face/facequery/query
This API enables the querying and match the facial image in database to check for existence
apiKey*
string
To be assigned by Innov8tif
imageBase64
string
Selfie image or portrait image in base64
imageFile*
string
Selfie image or portrait image
groupName*
string
Group name that existed in database that matches the facial image
When image is found in the group (database table):
{
"status": "success",
"resultFound": true,
"groupFound": true,
"name": "zhiyan",
"score": 0.0}When group does exists but cannot find similar face:
{
"status": "success",
"resultFound": false,
"groupFound": true
}When group does not exist:
{
"status": "success",
"resultFound": false,
"groupFound": false
}When there is no face detected in the submitted image file:
Last updated
{
"status": "error",
"message": "There is No Face Detected in Image",
"resultFound": false,
"groupFound": false
}{
// Response
}{
// Response
}