Create a Person [With Liveness detection]
Endpoint
Comprehensive service for the proper creation of persons within a collection, ensuring optimal management of individuals through the following workflow:
It first conducts a search in the collection 1:N to ensure that no duplicate person is generated within the same collection.
If no match is found stored in the collection, it proceeds to perform a Liveness Detection on the incoming selfie.
Once the above steps are completed, the service accurately creates a new person within the collection. Verifik ensures that a new person request with the same face is stored by performing the search (1:N) and additionally performs a liveness test.
NOTE: The "images" parameter is an array in which up to 3 images of the same person can be sent. If they are not of the same person, the system will not create the user correctly.
Headers
Content-Type
application/json
Authorization
Bearer <token>
Parameters
name
String
Yes
Full name of the person
collection_id
String
Yes
images
Array
Yes
An array containing Base64-encoded images of the person. You can send up to 3 images of the same person. Images must be Base64-encoded strings.
notes
String
No
Optional notes or remarks about the person (e.g., employment status, additional details).
date_of_birth
String
No
The person's date of birth in YYYY-MM-DD
format.
nationality
String
No
The person's nationality (e.g., "Colombian").
gender
String
No
The person's gender. Accepted values: "M" (Male), "F" (Female).
min_score
Float
No
The minimum score for face matching (Search 1:N), ranging from 0
to 1
. A higher value requires a stronger match to avoid duplicates. Default is usually around 0.8
.
search_mode
String
No
Defines the search speed. Accepted values: "FAST"
(faster but potentially less accurate), "ACCURATE"
(slower but more precise). we set as default "FAST"
liveness_min_score
Float
No
The minimum liveness score, ranging from 0
to 1
. A value of 0.65
is typical, where values closer to 1
increase strictness in confirming liveness.
Request
Last updated