Version 1

Insert Face Into Database

POST http://okaydocdev.innov8tif.com/ekyc/api/innov-face/facequery/insert

Request Body

Name
Type
Description

userName

string

Image name.

groupName

string

Image group name.

imageFile

object

Image object. Either use imageBase64 or imageFile, if both are filled in, baseBase64 will be used.

imageBase64

string

Image in base64 encoded string. Either use imageBase64 or imageFile, if both are filled in, baseBase64 will be used.

apiKey

string

To be assigned by Innov8tif.

{
    "status": "success",
    "groupName": "celebrity",
    "groupStatus": "EXISTING",
    "name": "tom"
}

Example Input

Match Faces In Database

POST http://okaydocdev.innov8tif.com/ekyc/api/innov-face/query

Request Body

Name
Type
Description

groupName

string

Image group to be matched with.

imageFile

object

Image object. Either use imageBase64 or imageFile, if both are filled in, baseBase64 will be used.

imageBase64

string

Image in base64 encoded string. Either use imageBase64 or imageFile, if both are filled in, baseBase64 will be used.

apiKey

string

To be assigned by Innov8tif.

{
    "status": "success",
    "resultFound": true,
    "groupFound": true,
    "name": "tom",
    "score": 1.0
}

Example Input

Face Verification

Last updated

Was this helpful?