Retrieve an app login
Endpoint URL:
GET https://api.verifik.co/v2/app-logins/{id}
Description:
This endpoint retrieves a single app login record by its ID, along with optional populated fields such as emailValidation
, phoneValidation
, or biometricValidation
.
URL Parameters:
Parameter Name | Type | Description |
---|---|---|
| string | The unique ID of the app login record you want to retrieve. |
Query Parameters:
Parameter Name | Type | Description |
---|---|---|
| array | An array specifying which validation fields to populate (e.g., |
Sample Request:
Sample Request (Node.js - Axios):
Responses
Response Fields:
data: Object containing the app login record.
_id: Unique identifier of the app login.
client: The client ID associated with this login.
name: The name of the client or 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 (e.g.,
email
,phone
,biometric
).emailValidation: Reference ID for the email validation record.
phoneValidation: Reference ID for the phone validation record.
biometricValidation: Reference ID for the biometric validation record.
accessControlLog: Reference ID for the access control log.
updatedAt: Timestamp of the last update to the validation.
createdAt: Timestamp when the validation was created.
__v: Version key.
Last updated