Create Biometric Validation
Endpoint
This endpoint is used to create a new biometric validation. The biometric validation is used to control the whole process of searching someone in the project (1:N) and then authenticating/onboarding the user depending on the flow they are trying to perform. Creating a biometric validation may include the type (login, onboarding).
Params
project
string
The unique identifier for the project.
Yes
projectFlow
string
The unique identifier for the project flow.
Yes
identifier
string
The unique identifier for the client (user) being validated.
Yes
type
string
The type of biometric validation (e.g., "login").
Yes
Request
Response
Response Details
livenessSession: The data for the liveness session created as part of this biometric validation.
client: The unique identifier for the client.
project: The project ID associated with the biometric validation.
projectFlow: The flow ID for this project.
identifier: The unique identifier for the session.
status: The status of the liveness session (e.g., "active").
livenessResult: Any results from the liveness check (array).
comparisonResult: Any results from biometric comparisons (array).
generalInformation: Any general information related to the session (array).
expiresAt: The expiry timestamp for the session.
activatedAt: The activation timestamp for the session.
updatedAt: The last updated timestamp.
createdAt: The creation timestamp.
_id: The unique identifier for the liveness session.
biometricValidation: The data for the biometric validation itself.
client: The client ID for this validation.
project: The project ID for this validation.
projectFlow: The flow ID for this validation.
livenessSession: The associated liveness session ID.
status: The status of the biometric validation (e.g., "new").
type: The type of validation (e.g., "login").
url: A URL related to the biometric validation, typically for a liveness check.
livenessScore: The score from the liveness check.
assignedCollection: The collection ID assigned to this validation.
collectionCode: A unique collection code.
requires2FA: A boolean indicating whether the validation requires 2FA (Two-Factor Authentication).
createdAt: The creation timestamp for the validation.
updatedAt: The last updated timestamp for the validation.
_id: The unique identifier for the biometric validation.
token: A JWT token associated with the liveness session, containing an expiration timestamp and other information.
Last updated