Version 1
Insert Face Into Database
POST
http://okaydocdev.innov8tif.com/ekyc/api/innov-face/facequery/insert
Request Body
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
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
Last updated
Was this helpful?