/register_face
Create a new user in our database
Endpoint
https://be.progeny.tech/api/v3/services/register_face/
Purpose
Allows you to connect to the Liveness service, using the provider configured in the Progeny Console, to register a face image in database.
If the image passes the liveness check, the result is a UUID.
If the image does not contain a face, only contains a partial face, or if the quality of the image is too low, we will return an error code, for example FACE_TOO_SMALL
. See our image requirements above for more information.
Sample request and response
Get a task Id
POST
https://be.progeny.tech/api/v3/services/register_face
Request Body
image*
String
The file path to an image of the user's face in PNG, JPEG, or JPG file format
extend_data
Boolean
Set to true to retrieve the original response from the 3rd-party provider of the Liveness service
{
"id": "58bf8a18-b10b-409d-91d6-fdd358408dff"
}
Get UUID
GET
https://be.progeny.tech/api/v3/services/task/?id={{task_id}}
Path Parameters
id*
String
The task Id you obtained from your POST request
{
"id": 2170,
"status": "SUCCESS",
"result": {
"status": 200,
"data": {
"uuid": "d3da2b7a-b062-11ec-b3b9-0242ac190002"
}
}
}
Last updated
Was this helpful?