List all App Registrations

GET https://api.verifik.co/v2/app-registrations

This endpoint allows you to retrieve a list of all App Registrations within the Verifik API. You can use this to get a detailed overview of multiple app registrations, including their status, associated project, validation statuses, and more.

Headers

Name
Value

Content-Type

application/json

Authorization

Bearer <token>

Query Parameters

Parameter
Type
Description

page

number

Specifies the page number for pagination, starting from 1.

perPage

number

Defines the number of items per page for pagination.

populates[]

string

Populates the specified field, transforming ObjectId references into full objects. Available options: emailValidation, phoneValidation, informationValidation, biometricValidation, documentValidation, documentFace, failedBiometricValidations, project, projectFlow

where_status

string

Where condition to filter by status. Options: STARTED, ONGOING, COMPLETED_WITHOUT_KYC, COMPLETED, FAILED, NEEDS_MANUAL_VERIFICATION, EXPIRED

Request

import http.client

payload = ""
headers = {
  "Authorization": "Bearer YOUR_ACCESS_TOKEN"
}

conn = http.client.HTTPSConnection("api.verifik.co")
conn.request("GET", "/v2/app-registrations", payload, headers)
res = conn.getresponse()
data = res.read()
print(data.decode("utf-8"))

Response

{
  "data": [
    {
      "_id": "507f1f77bcf86cd799439011",
      "client": "507f1f77bcf86cd799439012",
      "project": "507f1f77bcf86cd799439013",
      "projectFlow": "507f1f77bcf86cd799439014",
      "status": "ONGOING",
      "email": "[email protected]",
      "countryCode": "+57",
      "phone": "1234567890",
      "currentStep": "signUpForm",
      "redFlags": 0,
      "language": "en",
      "failedEmailValidations": [],
      "failedPhoneValidations": [],
      "failedBiometricValidations": [],
      "failedDocumentValidations": [],
      "informationValidation": "507f1f77bcf86cd799439015",
      "name": "John Doe",
      "accessControlLog": "507f1f77bcf86cd799439016",
      "updatedAt": "2025-01-01T00:00:00.000Z",
      "createdAt": "2025-01-01T00:00:00.000Z",
      "__v": 1,
      "documentFace": "507f1f77bcf86cd799439017",
      "documentValidation": "507f1f77bcf86cd799439018"
    }
  ]
}

Last updated

Was this helpful?