Retrieve an App Registration

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

With this service, you can bring all app registrations that you have created or if you only want one, you can specify the ID of the app registration and the endpoint will return only the selected registration.

Headers

Name
Value

Content-Type

application/json

Authorization

Bearer <token>

Query Parameters

Name
Type
Description

id

string

ID of the App Registration that you want to bring the information.

Optional Query Parameters

Name
Type
Description

populates[]

string

Use this to populate additional related data. Available options: project, projectFlow, emailValidation, phoneValidation, biometricValidation, documentValidation, informationValidation, person, face, documentFace, compareFaceVerification, cryptoValidation, formSubmission, signature, accessControlLog

Request

import http.client

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

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

Response

{
  "data": {
    "__v": 0,
    "_id": "507f1f77bcf86cd799439011",
    "client": "507f1f77bcf86cd799439012",
    "project": "507f1f77bcf86cd799439013",
    "projectFlow": "507f1f77bcf86cd799439014",
    "smartLink": "507f1f77bcf86cd799439015",
    "status": "STARTED",
    "email": "[email protected]",
    "countryCode": "+1",
    "phone": "1234567890",
    "name": "John Doe",
    "currentStep": "Document Verification",
    "informationValidation": "507f1f77bcf86cd799439016",
    "emailValidation": "507f1f77bcf86cd799439017",
    "phoneValidation": "507f1f77bcf86cd799439018",
    "biometricValidation": "507f1f77bcf86cd799439019",
    "person": "507f1f77bcf86cd799439020",
    "assignedCollection": "507f1f77bcf86cd799439021",
    "documentValidation": "507f1f77bcf86cd799439022",
    "face": "507f1f77bcf86cd799439023",
    "documentFace": "507f1f77bcf86cd799439024",
    "compareFaceVerification": "507f1f77bcf86cd799439025",
    "cryptoValidation": "507f1f77bcf86cd799439026",
    "formSubmission": "507f1f77bcf86cd799439027",
    "signature": "507f1f77bcf86cd799439028",
    "redFlags": 0,
    "redFlagsDetails": {},
    "language": "en",
    "accessControlLog": "507f1f77bcf86cd799439029",
    "failedEmailValidations": [],
    "failedPhoneValidations": [],
    "failedBiometricValidations": [],
    "failedDocumentValidations": [],
    "notes": "Additional verification required.",
    "createdAt": "2025-01-01T00:00:00.000Z",
    "updatedAt": "2025-01-01T00:00:00.000Z"
  }
}

Last updated

Was this helpful?