List all app logins
Last updated
Last updated
GET https://api.verifik.co/v2/app-logins
This endpoint retrieves a list of app login attempts with detailed validation information for email, phone, and biometrics. The response includes an array of data containing information about the login attempts and associated validation types (email, phone, biometric).
Parameter Name | Type | Description |
---|---|---|
_id: Unique identifier for the login attempt.
client: The client ID associated with this login.
name: Name of the client or the app.
status: Status of the login attempt (pending
, validated
, etc.).
project: ID of the project associated with the login.
projectFlow: ID of the project flow for tracking the process.
type: Type of validation performed (email
, phone
, or biometric
).
emailValidation: Object that contains information about email validation (optional).
phoneValidation: Object that contains information about phone validation (optional).
biometricValidation: Object that contains information about biometric validation (optional).
accessControlLog: Log of the access control attempts associated with this login (optional).
updatedAt: Timestamp for the last update to the validation.
createdAt: Timestamp when the validation was created.
__v: Version key.
Responses
page
int
Specifies the page of the results to retrieve. Default is 1
.
populates[]
array
An array specifying which validations to include (e.g., emailValidation
, phoneValidation
, biometricValidation
).
sort
string
Field by which to sort the results. Default is by creation date (-createdAt
).
where-exists_emailValidation
int
Filter results where email validation exists (1
to include).
where-exists_phoneValidation
int
Filter results where phone validation exists (1
to include).
where-exists_biometricValidation
int
Filter results where biometric validation exists (1
to include).
like_name
string
Search results by name (supports partial matching).