Available via API | Available via SDK | Needs configuration on Veriff's side | Needs a separate integration | Needs a separate webhook |
|---|---|---|---|---|
Metadata Database Verification validates end-user’s identity data (name, DOB, address, national ID, phone, document numbers, etc) against authoritative external government, consumer, credit bureau, utility, and phone registry databases via the DataZoo aggregation platform. It returns field-level validation statuses for granular, programmable decision-making.
*This solution can be:
an add-on to your document-based Identity Verification (IDV), or
used separately as a stand-alone check. In this case a separate integration is needed, the whole flow is done over the API and you need to input all the data in initData.
All session-related info is returned via decision webhook and can be polled from different API endpoints. The results of the verification can also be viewed in the Veriff Customer Portal, in the Webhook tab.
Contact your solutions engineer for info and configuration.
Prerequisites
You have an integration set up with Veriff
The database check is configured for that integration by your Solutions Engineer
You have configured the decision webhook to get responses from Veriff (see the how-to in webhooks' Set up webhooks section)
If using the API, you are ready to collect and send Veriff your end-user's data
The data you need to send when creating a session depends on the database. Check regional databases' documentation for the exact list of fields.
Key terminology
Term | Description |
|---|---|
DataZoo | Third-party registry aggregation platform that Veriff uses to query government and commercial databases worldwide |
Registry | A specific external database source (e.g., "Australia Consumer", "Chile National ID") |
Registry Key | The identifier for each registry result in the webhook, formatted as In the examples below, indicated as placeholder |
initData | The data object sent by the customer in the |
End-user data sources
The "end-user data sources" refer to the origins from which the end-user's information can be collected for database verification. This solution is performed using initData.
InitData
This is data that you provide when creating a verification session, i.e. the parameters you specify in the POST /sessions request. Includes information like names, date of birth, address, phone number, ID number, gender etc.
General overview of the parameters sent via initData:
person.firstName:stringEnd-user's first nameperson.lastName:stringEnd-user's last nameperson.fullName:stringEnd-user’s first and last nameperson.dateOfBirth:stringDate of birth inYYYY-MM-DDformatperson.middleName:stringMiddle nameperson.gender:stringGender (M/F)person.email:stringEmail addressperson.phoneNumber:stringMobile phone numberperson.landLinePhoneNumber:stringLandline phone numberperson.idNumber:stringNational ID numberperson.citizenship:stringCitizenship statusperson.partnerFirstName:stringPartner’s first nameperson.partnerLastName:stringPartner’s last nameperson.marriageDateOfEvent:stringMarriage dateperson.secondLastName:stringSecond last namedocument.number:stringDocument numberdocument.type:stringDocument typedocument.country:stringDocument issuing country (ISO 3166-1 alpha-2)document.validFrom:stringDocument issue/valid-from datedocument.validUntil:stringDocument expiry datedocument.cardNumber:stringPhysical card numberdocument.cardType:stringCard typedocument.stateOfIssue:stringState of issuedocument.referenceNumber:stringReference numberdocument.registrationNumber:stringRegistration numberdocument.version:stringDocument versionaddress.fullAddress:stringFull address stringaddress.street:stringStreet nameaddress.neighbourhood:stringUsually an unofficial neighbourhood nameaddress.city:stringCity nameaddress.state:stringA first-level administrative divisionaddress.postcode:stringPostcode numberaddress.suburb:stringSuburb (used by AU/NZ registries; equivalent toaddress.neighbourhoodin some registries)address.country:string2-letter ISO country codeconsents:arrayList of consent objectstype:stringConsent type see Consent types for the full list of valid values per registryapproved:booleanWhether consent was obtained
The data you need to send when creating a session depends on the database. Check regional databases' documentation for the exact list of fields.
Flow overview
Database flow
Step 1: you input end-user's data (initData) in POST /sessions API call
Step 2: system queries the appropriate database(s) based on country/region
Step 3: validation analysis, aka field-by-field comparison between input data and registry data, leading to validation of multiple data points (name, DOB, address, etc.)
Step 4: validation decision
Step 5: webhook is sent, containing:
Validation conclusion per field sent and supported by registry
Info about decision influence based on selected compared fields
Session flow
This solution is available only via API. You are responsible for gathering and passing all required initData.
Use via API
Generate a verification session using the
API keysand thebaseURLof your integration (see the API Documentation and API Reference how to find these).Check each database's documentation to see which initData parameters are required and allowed to be sent.
Patch session status to
submittedstatus using PATCH /sessions/{sessionId} call.This endpoint requires endpoint level authentication via
x-hmac-signatureheader. See HMAC Authentication and Endpoint Security article for general info about signature creation.
Sample request payload
curl -X PATCH 'https://stationapi.veriff.com/v1/sessions/fd5c1563-1d23-4b1a-ae46-7ba429927ed8' \
-H 'Content-Type: application/json' \
-H 'X-AUTH-CLIENT: your-api-key' \
-H 'x-hmac-signature: 034c6da2bb31fd9e6892516c6d7b90ebe10f79b47cfb3d155d77b4d9b66e1d53' \
-d '{
"verification": {
"status": "submitted"
}
}'
Database checks are run.
Check the decision data and/or session related info from the decision webhook and/or query the data from the GET /decisions endpoint. Check each database's documentation to see an example of the webhook and API response payload.
Find decision and/or session related info
You can get the data from three sources:
Receive the decision webhook webhook (check each database's documentation to see an example).
Query the results via GET /sessions/{sessionId}/decision (payload is identical to webhook’s, check each database's documentation to see an example).
View the session in Veriff Customer Portal > All Verifications > Webhooks tab.
The data you see in the webhook / API response payload depends on the database. Check regional databases' documentation for the exact list of fields.
Note about object and field visibility
Some objects and fields within the registryValidations are optional.
You should expect that any key may be omitted from the payload or return a null value.
A field is included in the response only when it is not skipped. If a validation was configured but skipped, it is omitted from the webhook.
Because the response schema is dynamic and based on both your specific configuration and the quality of the initData provided, your application logic must account for omitted keys and null values as a standard part of the verification workflow.
Note on session outcomes
An approved session is identified by a verification.status of approved. Depending on your configuration, a "clean" result may also include:
All configured validations returned
successornot_applicable
If a validation is not enabled, it is omitted from the payload and do not impact the approved status.
Webhook/API response general structure
The example below uses placeholder data to show only the part that is relevant to Metadata Database Verification solution.
{
"verification": {
"registryValidations": {
"<REGISTRY_KEY>": {
"status": "success | failure | error",
"data": { ... } | null,
"error": null | {
"code": "enum string",
"message": "string"
},
"timestamp": null,
"validations": {
"<validation_check>": {
"result": "enum string",
"reason": "string | null"
}
}
}
}
}
}Parameters explained
verification:objectParent container for verification resultsregistryValidations:objectMetadata Database Verification results container<REGISTRY_KEY>:objectCombination of country code and registry name. Parent container for the specific registry resultsstatus:stringOverall result. Enum:success,failure, orerrordata:object|nullData returned from the registry (e.g., visa details, person status).nullif registry only performs matching without returning dataerror:object|nullStructured error when<REGISTRY_KEY>.statusiserror.nullotherwisetimestamp: Always returnsnullvalidations:object|nullMap of<validation_check>to the validations matching outcome as shown inresult.nullwhen<REGISTRY_KEY>.statusiserror
Available data object values
The data object in each registry result is populated from the canonical field mapping. A field is present only if the registry returned a non-empty value for it; otherwise the key is omitted. The full set of possible keys is listed below, grouped by category.
Person
firstNameFirst namemiddleNameMiddle namelastNameLast namefullNameFull nameotherNamesOther / alternative names (array)genderGenderyearOfBirthYear of birth indicatorpersonStatusRegistry-recorded person status
Address
addressAddress as a single stringaddress1First address line (street + number)matchedAddressAddress line that matched in the registrycityCity / townsuburbSuburb or neighbourhoodpostCodePostal / ZIP codelocationFree-form location string
Contact
homePhoneNoHome / landline phone numberphoneDataStructured phone records (array of objects)phoneStatusPhone status (active / disconnected / etc.)carrierNameTelephone carrier name
Identification
nationalIdNoNational ID number returned by the registrynationalIdNoStatusNational ID status (valid / expired / etc.)verificationRequestNumberDVS verification request referencescanIdScan / search identifier
Visa and work entitlement (AU_VEVO and similar)
visaClassVisa class codevisaStreamVisa stream / category descriptionvisaGrantDateVisa grant datevisaExpiryDateVisa expiry dateworkEntitlementStatusNumeric work-entitlement statusworkEntitlementStatusTextWork-entitlement status description
Identity quality and match scores
identityFraudIdentity-fraud indicatoridentityStrengthIdentity-strength score / bandidentityValidityIdentity-validity indicatoraltAddressMatchScoreAlternative address-match score (object)altDobScoreAlternative date-of-birth match scorealtNameMatchScoreAlternative name-match score (object)dataSourceIdSource registry identifierdataSourceScoreSource-data confidence score (float)
Death and deceased-records signals
dateOfDeathRecorded date of deathdateOfRegistrationDeath-record registration datedeathIndexDeath-index identifierdeathRegistrationDeath registration found (boolean)deceasedRecordDeceased-record found (boolean)possibleDeceasedRecordPossible deceased-record match (boolean)possibleDeceasedRecordNameName on the possible deceased recordpossibleDeceasedRecordAddressAddress on the possible deceased recordpossibleDeceasedRecordPartialMatchingPartial-match indicator (boolean)
Fraud and risk signals
amberhillAmberhill fraud-list match (boolean)fraudVictimAlertFraud-victim alert on file (boolean)fraudulentActivityAddressAddress linked to fraudulent activity (boolean)overallFraudRiskOverall fraud-risk flag (boolean)siraFraudSIRA fraud indicator (boolean)siraImpersonationSIRA impersonation indicator (boolean)synthIdNoMatchSynthetic-identity number-match flag (boolean)whitelistWhitelist match (boolean)
Credit-file and records signals (US, CA, GB credit registries)
newCreditFileNewly created credit file (boolean)thinFileThin credit file (boolean)hasBankruptcyRecordsBankruptcy records present (boolean)hasBusinessRecordsBusiness records present (boolean)hasEvictionsRecordsEviction records present (boolean)hasForeclosuresRecordsForeclosure records present (boolean)hasJudgmentRecordsJudgment records present (boolean)hasLienRecordsLien records present (boolean)hasUccRecordsUCC records present (boolean)hasWorkplaceRecordsWorkplace records present (boolean)
Account and registry-specific
accountClassAccount classificationaccountTypeAccount typeactivationDateAccount / record activation dateactivityHistoryActivity history summaryadditionalInfoUrlURL pointing to additional registry informationbrandNameBrand or product namecategoryRegistry-defined categorydpIdData-provider identifiersourceRegistry source labelsubscriberIdSubscriber identifierstatusMessageFree-form status message from the registryregistrationNumberRegistration-number presence indicatorregistrationStateRegistration-state presence indicatorregistrationStatusRegistration status
Available validation_check values
Note that if a validation is skipped, it does not appear in webhook.
processingSystem-level execution statusis_input_validWhether end-user data passed format validation(Note: has
detailsarray onfailure)
consent_obtainedWhether required consent was providedidentity_is_validWhether the person was found/verified in the registryfirst_name_matchFirst name comparison resultmiddle_name_matchMiddle name comparison resultlast_name_matchLast name comparison resultfull_name_matchFull name comparison resultfirst_partner_name_matchPartner’s first name comparison resultlast_partner_name_matchPartner’s last name comparison resultdate_of_birth_matchDate of birth comparison resultgender_matchGender comparison resultemail_matchEmail comparison resultphone_number_matchPhone number comparison resultland_line_phone_number_matchLandline phone comparison resultid_number_matchNational ID number comparison resultmarriage_date_of_event_matchMarriage date comparison resultaddress_full_address_matchFull address comparison resultaddress_street_matchStreet comparison resultaddress_city_matchCity comparison resultaddress_state_matchState comparison resultaddress_postcode_matchPostcode comparison resultaddress_neighbourhood_matchNeighbourhood comparison resultdocument_number_matchDocument number comparison resultdocument_card_number_matchCard number comparison resultdocument_version_matchDocument version comparison resultdocument_reference_number_matchReference number comparison resultdocument_valid_from_matchDocument valid-from date comparison result
validation_check.result statuses and meanings
successThe submitted value matches the registry recordfailurewith:reason:value_mismatchThe submitted value does not match the registry record
not_applicablewith:reason:input_not_providedThe input value was not provided for this validationreason:output_not_receivedThe registry did not return data for this field
validation_check.reason values
nullOn successvalue_mismatchProvided value does not match registryinput_not_providedInput value was not providedoutput_not_receivedRegistry didn't return the data pointperson_not_foundPerson not found in registryconsent_not_obtainedRequired consent was not giveninput_invalidInput data was provided but in incorrect formatregistry_unavailableRegistry could not be reachedtechnical_issuesInternal error occurred
Special case:
is_input_validhas adetailsarray onfailureWhen the
is_input_validvalidation fails, the response includes adetailsarray (string[]) listing the format problems found:"is_input_valid": { "result": "failure", "reason": "input_invalid", "details": [ "Invalid value for document_number should be: 10 digits" ] }
error.code and error.message values
Note that:
These appear when
statusiserrorerrorisnullwhen registrystatusissuccessorfailure
|
|
|---|---|
| Two possible values:
|
|
|
Consent types
Some registries require explicit end-user consent before the registry can be queried. When a registry requires consent, you must include a consents array in the verification object of your POST /sessions payload. The type field of each consent object must match one of the values below.
Consent | Used by |
|---|---|
| AU DVS registries: Driver Licence, Passport, Birth Certificate, Citizenship Certificate, Centrelink Card, Electoral Roll, ImmiCard, Marriage Certificate, Medicare Card, Change of Name Certificate, Travel Document |
| AU non-DVS registries: VEVO, Visa, Residential, Residential Lookup, Citizens, Consumer, Credit Bureau, Death Check, ASIC, Phone, Superannuation, TICA |
| Canada registries: Residential, Credit Bureau, Credit Bureau 2, Consumer, Phone |
| New Zealand DIA registries: DIA Birth, DIA Citizenship, DIA Passport |
| New Zealand DIA alternate consent type (used for some DIA-registered databases) |
| Catch-all for registries requiring generic consent (e.g. Colombia National ID, India Aadhaar, Malaysia National ID) |
(none) | Most European, Asian, African, and LATAM registries do not require consent. See each registry's section for details. |
Sample consent object
"consents": [
{
"type": "au-dvs",
"approved": true
}
]Databases by regions
Australia - ASIC Personal Name Register (AU_ASIC_PERSONAL_NAME_REGISTER)
Australia - DVS Australia Driver Licence (AU_DRIVER_LICENCE)
Australia - DVS Change of Name Certificate (AU_CHANGE_OF_NAME_CERTIFICATE)
Australia - DVS Citizenship Certificate (AU_CITIZENSHIP_CERTIFICATE)
Australia - DVS Marriage Certificate (AU_MARRIAGE_CERTIFICATE)
Australia - Superannuation & Payroll (AU_SUPERANNUATION_PAYROLL)
Australia - TICA Tenancy Register (AU_TICA_TENANCY_REGISTER)
Indonesia - Residential Identity Card (ID_RESIDENT_IDENTITY_CARD)
APAC
🇦🇺 Australia - ASIC Personal Name Register (AU_ASIC_PERSONAL_NAME_REGISTER)
Input parameters | POST /sessions example |
|---|---|
Mandatory
Optional
| |
Sample response payload
The following info can be found in decision webhook payload and GET /decision endpoint's payload, in verifications.registryValidations object.
{
"AU_ASIC_PERSONAL_NAME_REGISTER": {
"status": "success",
"data": {
"firstName": "Sarah",
"lastName": "Thompson",
"middleName": "Jane"
},
"validations": {
"processing": { "result": "success", "reason": null },
"is_input_valid": { "result": "success", "reason": null },
"identity_is_valid": { "result": "success", "reason": null },
"first_name_match": { "result": "success", "reason": null },
"last_name_match": { "result": "success", "reason": null },
"date_of_birth_match": { "result": "success", "reason": null },
"middle_name_match": { "result": "success", "reason": null }
},
"error": null,
"timestamp": null
}
}🇦🇺 Australia - Citizens (AU_CITIZENS)
Input parameters | POST /sessions example |
|---|---|
Mandatory
Conditionally required in addition to mandatory data
Optional
| Group A Group B with parsed address fields Group B with |
To send address info, you can send the data using EITHER parsed
address.street+address.postcodeparameters OR the full address viafullAddressparameter.Do not send both parsed address data AND the full address data.
Sample response payload - Group B
The following info can be found in decision webhook payload and GET /decision endpoint's payload, in verifications.registryValidations object.
{
"AU_CITIZENS": {
"status": "success",
"data": {
"address1": "15 Queen Street",
"city": "Brisbane",
"postCode": "4000",
"dataSourceScore": 0.92,
"firstName": "Sarah",
"lastName": "Thompson",
"middleName": "Jane"
},
"validations": {
"processing": { "result": "success", "reason": null },
"is_input_valid": { "result": "success", "reason": null },
"identity_is_valid": { "result": "success", "reason": null },
"first_name_match": { "result": "success", "reason": null },
"last_name_match": { "result": "success", "reason": null },
"date_of_birth_match": { "result": "not_applicable", "reason": "input_not_provided" },
"middle_name_match": { "result": "success", "reason": null },
"gender_match": { "result": "not_applicable", "reason": "output_not_received" },
"email_match": { "result": "not_applicable", "reason": "output_not_received" },
"phone_number_match": { "result": "not_applicable", "reason": "output_not_received" },
"address_full_address_match": { "result": "success", "reason": null }
},
"error": null,
"timestamp": null
}
}🇦🇺Australia Consumer (AU_CONSUMER)
Input parameters | POST /sessions example |
|---|---|
Mandatory
Optional
| With parsed address elements With |
To send address info, you can send the data using EITHER parsed
address.street+address.neighbourhood+address.city+address.state+address.postcodeparameters OR the full address viafullAddressparameter.Do not send both parsed address data AND the full address data.
Sample response payload - address scenario
The following info can be found in decision webhook payload and GET /decision endpoint's payload, in verifications.registryValidations object.
{
"AU_CONSUMER": {
"status": "success",
"data": {
"address1": "8 Pitt Street",
"city": "Sydney",
"firstName": "Michael",
"lastName": "Brown"
},
"validations": {
"processing": { "result": "success", "reason": null },
"is_input_valid": { "result": "success", "reason": null },
"identity_is_valid": { "result": "success", "reason": null },
"first_name_match": { "result": "success", "reason": null },
"last_name_match": { "result": "success", "reason": null },
"date_of_birth_match": { "result": "success", "reason": null },
"email_match": { "result": "not_applicable", "reason": "output_not_received" },
"phone_number_match": { "result": "not_applicable", "reason": "output_not_received" },
"address_full_address_match": { "result": "success", "reason": null }
},
"error": null,
"timestamp": null
}
}🇦🇺 Australia - Credit Bureau (AU_CREDIT_BUREAU)
Input parameters | POST /sessions example |
|---|---|
Mandatory
Optional
| With parsed address fields With |
To send address info, you can use either parsed
address.street+address.city+address.postcodeparameters or the full address viaaddress.fullAddress. Do not send both.
Sample response payload
The following info can be found in decision webhook payload and GET /decision endpoint's payload, in verifications.registryValidations object. Note that the payloads contain more parameters; to find info about them see the decision webhook and GET /decision endpoint's documentation.
{
"AU_CREDIT_BUREAU": {
"status": "success",
"data": {
"address1": "18 Bourke Street",
"city": "Melbourne",
"postCode": "3000",
"firstName": "Patricia",
"lastName": "Henderson"
},
"validations": {
"processing": { "result": "success", "reason": null },
"is_input_valid": { "result": "success", "reason": null },
"consent_obtained": { "result": "success", "reason": null },
"identity_is_valid": { "result": "success", "reason": null },
"first_name_match": { "result": "success", "reason": null },
"last_name_match": { "result": "success", "reason": null },
"date_of_birth_match": { "result": "success", "reason": null },
"address_full_address_match": { "result": "success", "reason": null },
"email_match": { "result": "not_applicable", "reason": "output_not_received" },
"phone_number_match": { "result": "not_applicable", "reason": "output_not_received" }
},
"error": null,
"timestamp": null
}
}🇦🇺 Australia - Death Check (AU_DEATH_CHECK)
Input parameters | POST /sessions example |
|---|---|
Mandatory
Optional
| With mandatory fields |
Sample response payload
The following info can be found in decision webhook payload and GET /decision endpoint's payload, in verifications.registryValidations object. Note that the payloads contain more parameters; to find info about them see the decision webhook and GET /decision endpoint's documentation.
{
"AU_DEATH_CHECK": {
"status": "success",
"data": {
"firstName": "Margaret",
"lastName": "Collins"
},
"validations": {
"processing": { "result": "success", "reason": null },
"is_input_valid": { "result": "success", "reason": null },
"consent_obtained": {"result": "success", "reason": null},
"identity_is_valid": { "result": "success", "reason": null },
"first_name_match": { "result": "success", "reason": null },
"last_name_match": { "result": "success", "reason": null },
"date_of_birth_match": { "result": "success", "reason": null }
},
"error": null,
"timestamp": null
}
}🇦🇺 Australia - DVS - Australia Driver Licence (AU_DRIVER_LICENCE)
Input parameters | POST /sessions example |
|---|---|
Mandatory
Optional
| |
Sample response payload
The following info can be found in decision webhook payload and GET /decision endpoint's payload, in verifications.registryValidations object. Note that the payloads contain more parameters; to find info about them see the decision webhook and GET /decision endpoint's documentation.
{
"AU_DRIVER_LICENCE": {
"status": "success",
"data": {
"firstName": "Jason",
"lastName": "Murphy",
"middleName": "Paul",
"verificationRequestNumber": "VRN-20260415-00325"
},
"validations": {
"processing": { "result": "success", "reason": null },
"is_input_valid": { "result": "success", "reason": null },
"consent_obtained": { "result": "success", "reason": null },
"identity_is_valid": { "result": "success", "reason": null },
"first_name_match": { "result": "success", "reason": null },
"last_name_match": { "result": "success", "reason": null },
"middle_name_match": { "result": "success", "reason": null },
"date_of_birth_match": { "result": "success", "reason": null },
"document_number_match": { "result": "success", "reason": null },
"document_card_number_match": { "result": "success", "reason": null }
},
"error": null,
"timestamp": null
}
}🇦🇺 Australia - DVS - Australia Medicare Card (AU_MEDICARE_CARD)
Input parameters | POST /sessions example |
|---|---|
Mandatory
Optional
| |
Sample response payload
The following info can be found in decision webhook payload and GET /decision endpoint's payload, in verifications.registryValidations object. Note that the payloads contain more parameters; to find info about them see the decision webhook and GET /decision endpoint's documentation.
{
"AU_MEDICARE_CARD": {
"status": "success",
"data": {
"firstName": "Laura",
"lastName": "Harrison",
"middleName": "Kate",
"fullName": "Laura Kate Harrison",
"verificationRequestNumber": "VRN-20260415-00337"
},
"validations": {
"processing": { "result": "success", "reason": null },
"is_input_valid": { "result": "success", "reason": null },
"consent_obtained": { "result": "success", "reason": null },
"identity_is_valid": { "result": "success", "reason": null },
"first_name_match": { "result": "success", "reason": null },
"last_name_match": { "result": "success", "reason": null },
"middle_name_match": { "result": "success", "reason": null },
"date_of_birth_match": { "result": "success", "reason": null },
"document_card_number_match": { "result": "success", "reason": null },
"document_reference_number_match": { "result": "success", "reason": null }
},
"error": null,
"timestamp": null
}
}🇦🇺 Australia - DVS - Australia Passport (AU_PASSPORT)
Input parameters | POST /sessions example |
|---|---|
Mandatory
Optional
| |
Sample response payload
The following info can be found in decision webhook payload and GET /decision endpoint's payload, in verifications.registryValidations object. Note that the payloads contain more parameters; to find info about them see the decision webhook and GET /decision endpoint's documentation.
{
"AU_PASSPORT": {
"status": "success",
"data": {
"firstName": "Sophie",
"lastName": "Bennett",
"middleName": "Louise",
"verificationRequestNumber": "VRN-20260415-00331"
},
"validations": {
"processing": { "result": "success", "reason": null },
"is_input_valid": { "result": "success", "reason": null },
"consent_obtained": { "result": "success", "reason": null },
"identity_is_valid": { "result": "success", "reason": null },
"first_name_match": { "result": "success", "reason": null },
"last_name_match": { "result": "success", "reason": null },
"middle_name_match": { "result": "success", "reason": null },
"date_of_birth_match": { "result": "success", "reason": null },
"document_number_match": { "result": "success", "reason": null }
},
"error": null,
"timestamp": null
}
}🇦🇺 Australia - DVS - Australia Visa (AU_VISA)
Input parameters | POST /sessions example |
|---|---|
Mandatory
| |
Sample response payload
The following info can be found in decision webhook payload and GET /decision endpoint's payload, in verifications.registryValidations object. Note that the payloads contain more parameters; to find info about them see the decision webhook and GET /decision endpoint's documentation.
{
"AU_VISA": {
"status": "success",
"data": {
"firstName": "Amara",
"lastName": "Okafor",
"verificationRequestNumber": "VRN-20260415-00343"
},
"validations": {
"processing": { "result": "success", "reason": null },
"is_input_valid": { "result": "success", "reason": null },
"consent_obtained": { "result": "success", "reason": null },
"identity_is_valid": { "result": "success", "reason": null },
"first_name_match": { "result": "success", "reason": null },
"last_name_match": { "result": "success", "reason": null },
"date_of_birth_match": { "result": "success", "reason": null },
"document_number_match": { "result": "success", "reason": null }
},
"error": null,
"timestamp": null
}
}🇦🇺 Australia - DVS - Birth Certificate (AU_BIRTH_CERTIFICATE)
Input parameters | POST /sessions example |
|---|---|
Mandatory
Optional
| |
Sample response payload
The following info can be found in decision webhook payload and GET /decision endpoint's payload, in verifications.registryValidations object. Note that the payloads contain more parameters; to find info about them see the decision webhook and GET /decision endpoint's documentation.
{
"AU_BIRTH_CERTIFICATE": {
"status": "success",
"data": {
"firstName": "Emily",
"lastName": "Clarke",
"middleName": "Rose",
"verificationRequestNumber": "VRN-20260415-00312"
},
"validations": {
"processing": { "result": "success", "reason": null },
"is_input_valid": { "result": "success", "reason": null },
"consent_obtained": { "result": "success", "reason": null },
"identity_is_valid": { "result": "success", "reason": null },
"first_name_match": { "result": "success", "reason": null },
"last_name_match": { "result": "success", "reason": null },
"middle_name_match": { "result": "success", "reason": null },
"date_of_birth_match": { "result": "success", "reason": null },
"document_number_match": { "result": "success", "reason": null },
"document_valid_from_match": { "result": "success", "reason": null }
},
"error": null,
"timestamp": null
}
}🇦🇺 Australia - DVS - Centrelink Card (AU_CENTRELINK_CARD)
Input parameters | POST /sessions example |
|---|---|
Mandatory
Optional
| |
Sample response payload
The following info can be found in decision webhook payload and GET /decision endpoint's payload, in verifications.registryValidations object. Note that the payloads contain more parameters; to find info about them see the decision webhook and GET /decision endpoint's documentation.
{
"AU_CENTRELINK_CARD": {
"status": "success",
"data": {
"firstName": "Barbara",
"lastName": "Nguyen",
"middleName": "Anne",
"verificationRequestNumber": "VRN-20260415-00318"
},
"validations": {
"processing": { "result": "success", "reason": null },
"is_input_valid": { "result": "success", "reason": null },
"consent_obtained": { "result": "success", "reason": null },
"identity_is_valid": { "result": "success", "reason": null },
"first_name_match": { "result": "success", "reason": null },
"last_name_match": { "result": "success", "reason": null },
"middle_name_match": { "result": "success", "reason": null },
"date_of_birth_match": { "result": "success", "reason": null },
"document_reference_number_match": { "result": "success", "reason": null }
},
"error": null,
"timestamp": null
}
}🇦🇺 Australia - DVS - Change of Name Certificate (AU_CHANGE_OF_NAME_CERTIFICATE)
Input parameters | POST /sessions example |
|---|---|
Mandatory
| |
Sample response payload
The following info can be found in decision webhook payload and GET /decision endpoint's payload, in verifications.registryValidations object. Note that the payloads contain more parameters; to find info about them see the decision webhook and GET /decision endpoint's documentation.
{
"AU_CHANGE_OF_NAME_CERTIFICATE": {
"status": "success",
"data": {
"firstName": "Rachel",
"lastName": "Greenwood",
"middleName": "Anne",
"verificationRequestNumber": "VRN-20260415-00355"
},
"validations": {
"processing": { "result": "success", "reason": null },
"is_input_valid": { "result": "success", "reason": null },
"consent_obtained": { "result": "success", "reason": null },
"identity_is_valid": { "result": "success", "reason": null },
"first_name_match": { "result": "success", "reason": null },
"last_name_match": { "result": "success", "reason": null },
"date_of_birth_match": { "result": "success", "reason": null },
"document_number_match": { "result": "success", "reason": null },
"document_valid_from_match": { "result": "success", "reason": null }
},
"error": null,
"timestamp": null
}
}🇦🇺 Australia - DVS - Citizenship Certificate (AU_CITIZENSHIP_CERTIFICATE)
Input parameters | POST /sessions example |
|---|---|
Mandatory
Optional
| |
Sample response payload
The following info can be found in decision webhook payload and GET /decision endpoint's payload, in verifications.registryValidations object. Note that the payloads contain more parameters; to find info about them see the decision webhook and GET /decision endpoint's documentation.
{
"AU_CITIZENSHIP_CERTIFICATE": {
"status": "success",
"data": {
"firstName": "Lena",
"lastName": "Petrova",
"middleName": "Maria",
"verificationRequestNumber": "VRN-20260415-00349"
},
"validations": {
"processing": { "result": "success", "reason": null },
"is_input_valid": { "result": "success", "reason": null },
"consent_obtained": { "result": "success", "reason": null },
"identity_is_valid": { "result": "success", "reason": null },
"first_name_match": { "result": "success", "reason": null },
"last_name_match": { "result": "success", "reason": null },
"middle_name_match": { "result": "success", "reason": null },
"date_of_birth_match": { "result": "success", "reason": null },
"document_number_match": { "result": "success", "reason": null },
"document_valid_from_match": { "result": "success", "reason": null }
},
"error": null,
"timestamp": null
}
}🇦🇺 Australia - DVS - ImmiCard (AU_IMMICARD)
Input parameters | POST /sessions example |
|---|---|
Mandatory
Optional
| |
Sample response payload
The following info can be found in decision webhook payload and GET /decision endpoint's payload, in verifications.registryValidations object. Note that the payloads contain more parameters; to find info about them see the decision webhook and GET /decision endpoint's documentation.
{
"AU_IMMICARD": {
"status": "success",
"data": {
"firstName": "Thanh",
"lastName": "Nguyen",
"middleName": "Van",
"verificationRequestNumber": "VRN-20260415-00361"
},
"validations": {
"processing": { "result": "success", "reason": null },
"is_input_valid": { "result": "success", "reason": null },
"consent_obtained": { "result": "success", "reason": null },
"identity_is_valid": { "result": "success", "reason": null },
"first_name_match": { "result": "success", "reason": null },
"last_name_match": { "result": "success", "reason": null },
"middle_name_match": { "result": "success", "reason": null },
"date_of_birth_match": { "result": "success", "reason": null },
"document_number_match": { "result": "success", "reason": null }
},
"error": null,
"timestamp": null
}
}🇦🇺 Australia - DVS - Marriage Certificate (AU_MARRIAGE_CERTIFICATE)
Input parameters | POST /sessions example |
|---|---|
Mandatory
Optional
| |
Sample response payload
The following info can be found in decision webhook payload and GET /decision endpoint's payload, in verifications.registryValidations object. Note that the payloads contain more parameters; to find info about them see the decision webhook and GET /decision endpoint's documentation.
{
"AU_MARRIAGE_CERTIFICATE": {
"status": "success",
"data": {
"firstName": "Claire",
"lastName": "Sutton",
"verificationRequestNumber": "VRN-20260415-00367"
},
"validations": {
"processing": { "result": "success", "reason": null },
"is_input_valid": { "result": "success", "reason": null },
"consent_obtained": { "result": "success", "reason": null },
"identity_is_valid": { "result": "success", "reason": null },
"first_name_match": { "result": "success", "reason": null },
"last_name_match": { "result": "success", "reason": null },
"date_of_birth_match": { "result": "success", "reason": null },
"first_partner_name_match": { "result": "success", "reason": null },
"last_partner_name_match": { "result": "success", "reason": null },
"marriage_date_of_event_match": { "result": "success", "reason": null },
"document_number_match": { "result": "success", "reason": null },
"document_valid_from_match": { "result": "success", "reason": null }
},
"error": null,
"timestamp": null
}
}🇦🇺 Australia - DVS - Travel Document (AU_TRAVEL_DOCUMENT)
Input parameters | POST /sessions example |
|---|---|
Mandatory
Optional
| |
Sample response payload
The following info can be found in decision webhook payload and GET /decision endpoint's payload, in verifications.registryValidations object. Note that the payloads contain more parameters; to find info about them see the decision webhook and GET /decision endpoint's documentation.
{
"AU_TRAVEL_DOCUMENT": {
"status": "success",
"data": {
"firstName": "Fatima",
"lastName": "Al-Rashid",
"middleName": "Zara",
"verificationRequestNumber": "VRN-20260415-00373"
},
"validations": {
"processing": { "result": "success", "reason": null },
"is_input_valid": { "result": "success", "reason": null },
"consent_obtained": { "result": "success", "reason": null },
"identity_is_valid": { "result": "success", "reason": null },
"first_name_match": { "result": "success", "reason": null },
"last_name_match": { "result": "success", "reason": null },
"date_of_birth_match": { "result": "success", "reason": null },
"document_number_match": { "result": "success", "reason": null }
},
"error": null,
"timestamp": null
}
}🇦🇺 Australia - Electoral Roll (AU_ELECTORAL_ROLL)
Input parameters | POST /sessions example |
|---|---|
Mandatory
| With parsed address fields With |
To send address info, you can use either parsed
address.street+address.city+address.postcodeparameters or the full address viaaddress.fullAddress. Do not send both.
Sample response payload
The following info can be found in decision webhook payload and GET /decision endpoint's payload, in verifications.registryValidations object. Note that the payloads contain more parameters; to find info about them see the decision webhook and GET /decision endpoint's documentation.
{
"AU_ELECTORAL_ROLL": {
"status": "success",
"data": {
"address1": "27 Flinders Street",
"city": "Melbourne",
"postCode": "3000",
"firstName": "Robert",
"lastName": "Mitchell"
},
"validations": {
"processing": { "result": "success", "reason": null },
"is_input_valid": { "result": "success", "reason": null },
"consent_obtained": { "result": "success", "reason": null },
"identity_is_valid": { "result": "success", "reason": null },
"first_name_match": { "result": "success", "reason": null },
"last_name_match": { "result": "success", "reason": null },
"date_of_birth_match": { "result": "success", "reason": null },
"address_full_address_match": { "result": "success", "reason": null }
},
"error": null,
"timestamp": null
}
}🇦🇺 Australia - Phone (AU_PHONE)
Input parameters | POST /sessions example |
|---|---|
Mandatory
| With parsed address fields With |
To send address info, you can use either parsed
address.street+address.city+address.postcodeparameters or the full address viaaddress.fullAddress. Do not send both.
Sample response payload
The following info can be found in decision webhook payload and GET /decision endpoint's payload, in verifications.registryValidations object. Note that the payloads contain more parameters; to find info about them see the decision webhook and GET /decision endpoint's documentation.
{
"AU_PHONE": {
"status": "success",
"data": {
"address1": "14 Park Road",
"city": "Brisbane",
"postCode": "4000",
"firstName": "Gregory",
"lastName": "Walsh",
"middleName": "Alan",
"homePhoneNo": "+61731234567"
},
"validations": {
"processing": { "result": "success", "reason": null },
"is_input_valid": { "result": "success", "reason": null },
"identity_is_valid": { "result": "success", "reason": null },
"first_name_match": { "result": "success", "reason": null },
"last_name_match": { "result": "success", "reason": null },
"address_full_address_match": { "result": "success", "reason": null }
},
"error": null,
"timestamp": null
}
}🇦🇺 Australia - Residential (AU_RESIDENTIAL)
Input parameters | POST /sessions example |
|---|---|
Mandatory
Optional
| With date of birth and other optional data With parsed address fields and other optional data With |
Note that you should send EITHER the date of birth info OR the address info.
To send address info, you can send the data using EITHER parsed
address.street+address.city+address.postcodeparameters OR the full address viafullAddressparameter.Do not sent both date of birth data and address data.
Do not send both parsed address data AND the full address data.
Sample response payload - address scenario
The following info can be found in decision webhook payload and GET /decision endpoint's payload, in verifications.registryValidations object. Note that the payloads contain more parameters; to find info about them see the decision webhook and GET /decision endpoint's documentation.
{
"AU_RESIDENTIAL": {
"status": "success",
"data": {
"address1": "42 George Street",
"city": "Sydney",
"postCode": "2000",
"dataSourceScore": 0.95,
"firstName": "James",
"lastName": "Wilson",
"middleName": "Robert"
},
"validations": {
"processing": { "result": "success", "reason": null },
"is_input_valid": { "result": "success", "reason": null },
"identity_is_valid": { "result": "success", "reason": null },
"first_name_match": { "result": "success", "reason": null },
"last_name_match": { "result": "success", "reason": null },
"middle_name_match": { "result": "success", "reason": null },
"date_of_birth_match": { "result": "not_applicable", "reason": "input_not_provided" },
"gender_match": { "result": "not_applicable", "reason": "output_not_received" },
"email_match": { "result": "not_applicable", "reason": "output_not_received" },
"phone_number_match": { "result": "not_applicable", "reason": "output_not_received" },
"land_line_phone_number_match": { "result": "not_applicable", "reason": "output_not_received" },
"address_full_address_match": { "result": "success", "reason": null }
},
"error": null,
"timestamp": null
}
}🇦🇺 Australia - Residential Lookup (AU_RESIDENTIAL_LOOKUP)
Input parameters | POST /sessions example |
|---|---|
Mandatory
Optional
| Mandatory fields only With all optional fields |
If sending address, you can use either parsed
address.street+address.city+address.postcodeparameters or the full address viaaddress.fullAddress. Do not send both.
Sample response payload
The following info can be found in decision webhook payload and GET /decision endpoint's payload, in verifications.registryValidations object. Note that the payloads contain more parameters; to find info about them see the decision webhook and GET /decision endpoint's documentation.
{
"AU_RESIDENTIAL_LOOKUP": {
"status": "success",
"data": {
"address1": "5 Collins Street",
"city": "Melbourne",
"postCode": "3000",
"firstName": "David",
"lastName": "Anderson",
"middleName": "James"
},
"validations": {
"processing": { "result": "success", "reason": null },
"is_input_valid": { "result": "success", "reason": null },
"identity_is_valid": { "result": "success", "reason": null },
"first_name_match": { "result": "success", "reason": null },
"last_name_match": { "result": "success", "reason": null },
"middle_name_match": { "result": "success", "reason": null },
"date_of_birth_match": { "result": "success", "reason": null },
"gender_match": { "result": "success", "reason": null },
"phone_number_match": { "result": "not_applicable", "reason": "output_not_received" },
"land_line_phone_number_match": { "result": "not_applicable", "reason": "output_not_received" },
"address_full_address_match": { "result": "success", "reason": null }
},
"error": null,
"timestamp": null
}
}🇦🇺 Australia - Superannuation & Payroll (AU_SUPERANNUATION_PAYROLL)
Input parameters | POST /sessions example |
|---|---|
Mandatory
Optional
| Mandatory fields only With optional address |
If sending address, you can use either parsed
address.street+address.city+address.postcodeparameters or the full address viaaddress.fullAddress. Do not send both.
Sample response payload
The following info can be found in decision webhook payload and GET /decision endpoint's payload, in verifications.registryValidations object. Note that the payloads contain more parameters; to find info about them see the decision webhook and GET /decision endpoint's documentation.
{
"AU_SUPERANNUATION_PAYROLL": {
"status": "success",
"data": {
"address1": "33 King Street",
"city": "Perth",
"postCode": "6000",
"firstName": "Andrew",
"lastName": "Fletcher"
},
"validations": {
"processing": { "result": "success", "reason": null },
"is_input_valid": { "result": "success", "reason": null },
"consent_obtained": { "result": "success", "reason": null },
"identity_is_valid": { "result": "success", "reason": null },
"first_name_match": { "result": "success", "reason": null },
"last_name_match": { "result": "success", "reason": null },
"date_of_birth_match": { "result": "success", "reason": null },
"address_full_address_match": { "result": "success", "reason": null }
},
"error": null,
"timestamp": null
}
}🇦🇺 Australia - TICA Tenancy Register (AU_TICA_TENANCY_REGISTER)
Input parameters | POST /sessions example |
|---|---|
Mandatory
Optional
| |
Sample response payload
The following info can be found in decision webhook payload and GET /decision endpoint's payload, in verifications.registryValidations object.
{
"AU_TICA_TENANCY_REGISTER": {
"status": "success",
"data": {
"firstName": "Tom",
"lastName": "Evans",
"middleName": "Michael"
},
"validations": {
"processing": { "result": "success", "reason": null },
"is_input_valid": { "result": "success", "reason": null },
"identity_is_valid": { "result": "success", "reason": null },
"first_name_match": { "result": "success", "reason": null },
"last_name_match": { "result": "success", "reason": null },
"date_of_birth_match": { "result": "success", "reason": null },
"middle_name_match": { "result": "success", "reason": null }
},
"error": null,
"timestamp": null
}
}🇦🇺 Australia - VEVO (AU_VEVO)
Input parameters | POST /sessions example |
|---|---|
Mandatory
| |
Sample response payload
The following info can be found in decision webhook payload and GET /decision endpoint's payload, in verifications.registryValidations object. Note that the payloads contain more parameters; to find info about them see the decision webhook and GET /decision endpoint's documentation.
{
"AU_VEVO": {
"status": "success",
"data": {
"visaClass": "500",
"visaGrantDate": "2023-07-15",
"visaExpiryDate": "2026-07-15",
"visaStream": "Student",
"workEntitlementStatus": "entitled",
"workEntitlementStatusText": "May work up to 48 hours per fortnight while course is in session",
"location": "Australia"
},
"validations": {
"processing": { "result": "success", "reason": null },
"is_input_valid": { "result": "success", "reason": null },
"consent_obtained": { "result": "success", "reason": null },
"identity_is_valid": { "result": "success", "reason": null },
"first_name_match": { "result": "success", "reason": null },
"last_name_match": { "result": "success", "reason": null },
"date_of_birth_match": { "result": "success", "reason": null },
"document_number_match": { "result": "success", "reason": null }
},
"error": null,
"timestamp": null
}
}🇰🇭 Cambodia - National ID (KH_NATIONAL_ID)
Input parameters | POST /sessions example |
|---|---|
Mandatory
Optional
| |
Sample response payload
The following info can be found in decision webhook payload and GET /decision endpoint's payload, in verifications.registryValidations object. Note that the payloads contain more parameters; to find info about them see the decision webhook and GET /decision endpoint's documentation.
{
"KH_NATIONAL_ID": {
"status": "success",
"data": null,
"validations": {
"processing": { "result": "success", "reason": null },
"is_input_valid": { "result": "success", "reason": null },
"consent_obtained": { "result": "success", "reason": null },
"identity_is_valid": { "result": "success", "reason": null },
"first_name_match": { "result": "success", "reason": null },
"last_name_match": { "result": "success", "reason": null },
"date_of_birth_match": { "result": "success", "reason": null },
"gender_match": { "result": "success", "reason": null },
"id_number_match": { "result": "success", "reason": null }
},
"error": null, "timestamp": null
}
}🇨🇳 China - Bank Card (CN_BANK_CARD)
Input parameters | POST /sessions example |
|---|---|
Mandatory
Optional
| |
Sample response payload
The following info can be found in decision webhook payload and GET /decision endpoint's payload, in verifications.registryValidations object. Note that the payloads contain more parameters; to find info about them see the decision webhook and GET /decision endpoint's documentation.
{
"CN_BANK_CARD": {
"status": "success",
"data": null,
"validations": {
"processing": { "result": "success", "reason": null },
"is_input_valid": { "result": "success", "reason": null },
"consent_obtained": { "result": "success", "reason": null },
"identity_is_valid": { "result": "success", "reason": null },
"full_name_match": { "result": "success", "reason": null },
"date_of_birth_match": { "result": "success", "reason": null },
"id_number_match": { "result": "success", "reason": null },
"document_card_number_match": { "result": "success", "reason": null }
},
"error": null,
"timestamp": null
}
}🇨🇳 China - National ID (CN_ID_VERIFICATION)
Input parameters | POST /sessions example |
|---|---|
Mandatory
Optional
| |
Sample response payload
The following info can be found in decision webhook payload and GET /decision endpoint's payload, in verifications.registryValidations object. Note that the payloads contain more parameters; to find info about them see the decision webhook and GET /decision endpoint's documentation.
{
"CN_ID_VERIFICATION": {
"status": "success",
"data": null,
"validations": {
"processing": { "result": "success", "reason": null },
"is_input_valid": { "result": "success", "reason": null },
"consent_obtained": { "result": "success", "reason": null },
"identity_is_valid": { "result": "success", "reason": null },
"full_name_match": { "result": "success", "reason": null },
"date_of_birth_match": { "result": "success", "reason": null },
"id_number_match": { "result": "success", "reason": null }
},
"error": null,
"timestamp": null
}
}🇨🇳 China - Passport Verification (CN_PASSPORT_VERIFICATION)
Input parameters | POST /sessions example |
|---|---|
Mandatory
Optional
| |
Sample response payload
The following info can be found in decision webhook payload and GET /decision endpoint's payload, in verifications.registryValidations object. Note that the payloads contain more parameters; to find info about them see the decision webhook and GET /decision endpoint's documentation.
{
"CN_PASSPORT_VERIFICATION": {
"status": "success",
"data": null,
"validations": {
"processing": { "result": "success", "reason": null },
"is_input_valid": { "result": "success", "reason": null },
"consent_obtained": { "result": "success", "reason": null },
"identity_is_valid": { "result": "success", "reason": null },
"full_name_match": { "result": "success", "reason": null },
"date_of_birth_match": { "result": "success", "reason": null },
"id_number_match": { "result": "success", "reason": null },
"document_number_match": { "result": "success", "reason": null }
},
"error": null,
"timestamp": null
}
}🇨🇳 China - Phone (CN_PHONE)
Input parameters | POST /sessions example |
|---|---|
Mandatory
Optional
| |
Sample response payload
The following info can be found in decision webhook payload and GET /decision endpoint's payload, in verifications.registryValidations object. Note that the payloads contain more parameters; to find info about them see the decision webhook and GET /decision endpoint's documentation.
{
"CN_PHONE": {
"status": "success",
"data": null,
"validations": {
"processing": { "result": "success", "reason": null },
"is_input_valid": { "result": "success", "reason": null },
"consent_obtained": { "result": "success", "reason": null },
"identity_is_valid": { "result": "success", "reason": null },
"full_name_match": { "result": "success", "reason": null },
"date_of_birth_match": { "result": "success", "reason": null },
"id_number_match": { "result": "success", "reason": null },
"phone_number_match": { "result": "success", "reason": null }
},
"error": null,
"timestamp": null
}
}🇭🇰 Hong Kong - Residential (HK_RESIDENTIAL)
Input parameters | POST /sessions example |
|---|---|
Mandatory
Optional
| |
Sample response payload
The following info can be found in decision webhook payload and GET /decision endpoint's payload, in verifications.registryValidations object. Note that the payloads contain more parameters; to find info about them see the decision webhook and GET /decision endpoint's documentation.
{
"HK_RESIDENTIAL": {
"status": "success",
"data": null,
"validations": {
"processing": { "result": "success", "reason": null },
"is_input_valid": { "result": "success", "reason": null },
"identity_is_valid": { "result": "success", "reason": null },
"first_name_match": { "result": "success", "reason": null },
"last_name_match": { "result": "success", "reason": null },
"middle_name_match": { "result": "not_applicable", "reason": "input_not_provided" },
"address_street_match": { "result": "success", "reason": null },
"address_city_match": { "result": "success", "reason": null },
"address_state_match": { "result": "success", "reason": null },
"address_postcode_match": { "result": "success", "reason": null },
"address_neighbourhood_match": { "result": "success", "reason": null }
},
"error": null,
"timestamp": null
}
}🇮🇩 Indonesia - Phone (ID_PHONE)
Input parameters | POST /sessions example |
|---|---|
Mandatory
Optional
| |
Sample response payload
The following info can be found in decision webhook payload and GET /decision endpoint's payload, in verifications.registryValidations object. Note that the payloads contain more parameters; to find info about them see the decision webhook and GET /decision endpoint's documentation.
{
"ID_PHONE": {
"status": "success",
"data": null,
"validations": {
"processing": { "result": "success", "reason": null },
"is_input_valid": { "result": "success", "reason": null },
"identity_is_valid": { "result": "success", "reason": null },
"full_name_match": { "result": "success", "reason": null },
"date_of_birth_match": { "result": "success", "reason": null },
"phone_number_match": { "result": "success", "reason": null },
"email_match": { "result": "success", "reason": null }
},
"error": null, "timestamp": null
}
}🇮🇩 Indonesia - Residential Identity Card (ID_RESIDENT_IDENTITY_CARD)
Input parameters | POST /sessions example |
|---|---|
Mandatory
Optional
| |
Sample response payload
The following info can be found in decision webhook payload and GET /decision endpoint's payload, in verifications.registryValidations object. Note that the payloads contain more parameters; to find info about them see the decision webhook and GET /decision endpoint's documentation.
{
"ID_RESIDENT_IDENTITY_CARD": {
"status": "success",
"data": null,
"validations": {
"processing": { "result": "success", "reason": null },
"is_input_valid": { "result": "success", "reason": null },
"consent_obtained": { "result": "success", "reason": null },
"identity_is_valid": { "result": "success", "reason": null },
"full_name_match": { "result": "success", "reason": null },
"date_of_birth_match": { "result": "success", "reason": null },
"gender_match": { "result": "success", "reason": null },
"id_number_match": { "result": "success", "reason": null },
"address_full_address_match": { "result": "success", "reason": null },
"address_street_match": { "result": "success", "reason": null },
"address_postcode_match": { "result": "success", "reason": null },
"address_neighbourhood_match": { "result": "success", "reason": null }
},
"error": null, "timestamp": null
}
}🇮🇳 India - Aadhaar (IN_AADHAAR)
Input parameters | POST /sessions example |
|---|---|
Mandatory
Optional
| |
Sample response payload
The following info can be found in decision webhook payload and GET /decision endpoint's payload, in verifications.registryValidations object. Note that the payloads contain more parameters; to find info about them see the decision webhook and GET /decision endpoint's documentation.
{
"IN_AADHAAR": {
"status": "success",
"data": null,
"validations": {
"processing": { "result": "success", "reason": null },
"is_input_valid": { "result": "success", "reason": null },
"consent_obtained": { "result": "success", "reason": null },
"identity_is_valid": { "result": "success", "reason": null },
"full_name_match": { "result": "success", "reason": null },
"date_of_birth_match": { "result": "success", "reason": null },
"id_number_match": { "result": "success", "reason": null },
"document_number_match": { "result": "success", "reason": null }
},
"error": null, "timestamp": null
}
}🇮🇳 India - Drivers Licence (IN_DRIVERS_LICENCE)
Input parameters | POST /sessions example |
|---|---|
Mandatory
Optional
| |
Sample response payload
The following info can be found in decision webhook payload and GET /decision endpoint's payload, in verifications.registryValidations object. Note that the payloads contain more parameters; to find info about them see the decision webhook and GET /decision endpoint's documentation.
{
"IN_DRIVERS_LICENCE": {
"status": "success",
"data": null,
"validations": {
"processing": { "result": "success", "reason": null },
"is_input_valid": { "result": "success", "reason": null },
"consent_obtained": { "result": "success", "reason": null },
"identity_is_valid": { "result": "success", "reason": null },
"full_name_match": { "result": "success", "reason": null },
"date_of_birth_match": { "result": "success", "reason": null },
"document_number_match": { "result": "success", "reason": null }
},
"error": null, "timestamp": null
}
}🇮🇳 India - EPIC (Voter's Registration) (IN_EPIC)
Input parameters | POST /sessions example |
|---|---|
Mandatory
Optional
| |
Sample response payload
The following info can be found in decision webhook payload and GET /decision endpoint's payload, in verifications.registryValidations object. Note that the payloads contain more parameters; to find info about them see the decision webhook and GET /decision endpoint's documentation.
{
"IN_EPIC": {
"status": "success",
"data": null,
"validations": {
"processing": { "result": "success", "reason": null },
"is_input_valid": { "result": "success", "reason": null },
"consent_obtained": { "result": "success", "reason": null },
"identity_is_valid": { "result": "success", "reason": null },
"full_name_match": { "result": "success", "reason": null },
"date_of_birth_match": { "result": "success", "reason": null },
"gender_match": { "result": "success", "reason": null },
"document_number_match": { "result": "success", "reason": null }
},
"error": null, "timestamp": null
}
}🇮🇳 India - PAN (Permanent Account Number) (IN_PAN)
Input parameters | POST /sessions example |
|---|---|
Mandatory
Optional
| |
Sample response payload
The following info can be found in decision webhook payload and GET /decision endpoint's payload, in verifications.registryValidations object. Note that the payloads contain more parameters; to find info about them see the decision webhook and GET /decision endpoint's documentation.
{
"IN_PAN": {
"status": "success",
"data": null,
"validations": {
"processing": { "result": "success", "reason": null },
"is_input_valid": { "result": "success", "reason": null },
"consent_obtained": { "result": "success", "reason": null },
"identity_is_valid": { "result": "success", "reason": null },
"full_name_match": { "result": "success", "reason": null },
"date_of_birth_match": { "result": "success", "reason": null },
"document_number_match": { "result": "success", "reason": null }
},
"error": null, "timestamp": null
}
}🇮🇳 India - Passport (IN_PASSPORT)
Input parameters | POST /sessions example |
|---|---|
Mandatory
Optional
| |
Sample response payload
The following info can be found in decision webhook payload and GET /decision endpoint's payload, in verifications.registryValidations object. Note that the payloads contain more parameters; to find info about them see the decision webhook and GET /decision endpoint's documentation.
{
"IN_PASSPORT": {
"status": "success",
"data": null,
"validations": {
"processing": { "result": "success", "reason": null },
"is_input_valid": { "result": "success", "reason": null },
"consent_obtained": { "result": "success", "reason": null },
"identity_is_valid": { "result": "success", "reason": null },
"full_name_match": { "result": "success", "reason": null },
"date_of_birth_match": { "result": "success", "reason": null },
"document_number_match": { "result": "success", "reason": null },
"document_reference_number_match": { "result": "success", "reason": null },
"document_valid_from_match": { "result": "success", "reason": null }
},
"error": null, "timestamp": null
}
}🇲🇾 Malaysia - Credit Bureau (MY_CREDIT_BUREAU)
Input parameters | POST /sessions example |
|---|---|
Mandatory
Optional
| |
Sample response payload
The following info can be found in decision webhook payload and GET /decision endpoint's payload, in verifications.registryValidations object. Note that the payloads contain more parameters; to find info about them see the decision webhook and GET /decision endpoint's documentation.
{
"MY_CREDIT_BUREAU": {
"status": "success",
"data": null,
"validations": {
"processing": { "result": "success", "reason": null },
"is_input_valid": { "result": "success", "reason": null },
"identity_is_valid": { "result": "success", "reason": null },
"first_name_match": { "result": "success", "reason": null },
"middle_name_match": { "result": "not_applicable", "reason": "input_not_provided" },
"last_name_match": { "result": "success", "reason": null },
"full_name_match": { "result": "success", "reason": null },
"date_of_birth_match": { "result": "success", "reason": null },
"id_number_match": { "result": "success", "reason": null },
"address_full_address_match": { "result": "success", "reason": null },
"address_street_match": { "result": "success", "reason": null },
"address_neighbourhood_match": { "result": "success", "reason": null },
"address_state_match": { "result": "success", "reason": null },
"address_postcode_match": { "result": "success", "reason": null },
"address_city_match": { "result": "success", "reason": null }
},
"error": null, "timestamp": null
}
}🇲🇾 Malaysia - National ID (MY_NATIONAL_ID)
Input parameters | POST /sessions example |
|---|---|
Mandatory
Optional
| |
Sample response payload
The following info can be found in decision webhook payload and GET /decision endpoint's payload, in verifications.registryValidations object. Note that the payloads contain more parameters; to find info about them see the decision webhook and GET /decision endpoint's documentation.
{
"MY_NATIONAL_ID": {
"status": "success",
"data": null,
"validations": {
"processing": { "result": "success", "reason": null },
"is_input_valid": { "result": "success", "reason": null },
"consent_obtained": { "result": "success", "reason": null },
"identity_is_valid": { "result": "success", "reason": null },
"first_name_match": { "result": "success", "reason": null },
"middle_name_match": { "result": "not_applicable", "reason": "input_not_provided" },
"last_name_match": { "result": "success", "reason": null },
"full_name_match": { "result": "success", "reason": null },
"date_of_birth_match": { "result": "success", "reason": null },
"gender_match": { "result": "success", "reason": null },
"id_number_match": { "result": "success", "reason": null },
"phone_number_match": { "result": "success", "reason": null },
"address_full_address_match": { "result": "success", "reason": null },
"address_street_match": { "result": "success", "reason": null },
"address_neighbourhood_match": { "result": "success", "reason": null },
"address_state_match": { "result": "success", "reason": null },
"address_postcode_match": { "result": "success", "reason": null },
"address_city_match": { "result": "success", "reason": null }
},
"error": null, "timestamp": null
}
}🇳🇿 New Zealand - Companies Office (NZ_COMPANIES_OFFICE)
Input parameters | POST /sessions example |
|---|---|
Mandatory
Optional
| |
Sample response payload
The following info can be found in decision webhook payload and GET /decision endpoint's payload, in verifications.registryValidations object. Note that the payloads contain more parameters; to find info about them see the decision webhook and GET /decision endpoint's documentation.
{
"NZ_COMPANIES_OFFICE": {
"status": "success",
"data": null,
"validations": {
"processing": { "result": "success", "reason": null },
"is_input_valid": { "result": "success", "reason": null },
"identity_is_valid": { "result": "success", "reason": null },
"first_name_match": { "result": "success", "reason": null },
"last_name_match": { "result": "success", "reason": null },
"middle_name_match": { "result": "success", "reason": null },
"date_of_birth_match": { "result": "success", "reason": null },
"phone_number_match": { "result": "success", "reason": null },
"land_line_phone_number_match": { "result": "success", "reason": null },
"address_street_match": { "result": "success", "reason": null },
"address_neighbourhood_match": { "result": "success", "reason": null },
"address_state_match": { "result": "success", "reason": null },
"address_postcode_match": { "result": "success", "reason": null }
},
"error": null, "timestamp": null
}
}🇳🇿 New Zealand - Consumer (NZ_CONSUMER)
Input parameters | POST /sessions example |
|---|---|
Mandatory
Optional
| |
Sample response payload
The following info can be found in decision webhook payload and GET /decision endpoint's payload, in verifications.registryValidations object. Note that the payloads contain more parameters; to find info about them see the decision webhook and GET /decision endpoint's documentation.
{
"NZ_CONSUMER": {
"status": "success",
"data": null,
"validations": {
"processing": { "result": "success", "reason": null },
"is_input_valid": { "result": "success", "reason": null },
"identity_is_valid": { "result": "success", "reason": null },
"first_name_match": { "result": "success", "reason": null },
"last_name_match": { "result": "success", "reason": null },
"date_of_birth_match": { "result": "success", "reason": null },
"phone_number_match": { "result": "success", "reason": null },
"email_match": { "result": "success", "reason": null },
"address_street_match": { "result": "success", "reason": null },
"address_neighbourhood_match": { "result": "success", "reason": null },
"address_state_match": { "result": "success", "reason": null },
"address_postcode_match": { "result": "success", "reason": null }
},
"error": null, "timestamp": null
}
}🇳🇿 New Zealand - Credit Bureau (NZ_CREDIT_BUREAU)
Input parameters | POST /sessions example |
|---|---|
Mandatory
Optional
| |
Sample response payload
The following info can be found in decision webhook payload and GET /decision endpoint's payload, in verifications.registryValidations object. Note that the payloads contain more parameters; to find info about them see the decision webhook and GET /decision endpoint's documentation.
{
"NZ_CREDIT_BUREAU": {
"status": "success",
"data": null,
"validations": {
"processing": { "result": "success", "reason": null },
"is_input_valid": { "result": "success", "reason": null },
"consent_obtained": { "result": "success", "reason": null },
"identity_is_valid": { "result": "success", "reason": null },
"first_name_match": { "result": "success", "reason": null },
"last_name_match": { "result": "success", "reason": null },
"date_of_birth_match": { "result": "success", "reason": null },
"address_street_match": { "result": "success", "reason": null },
"address_neighbourhood_match": { "result": "success", "reason": null },
"address_state_match": { "result": "success", "reason": null },
"address_postcode_match": { "result": "success", "reason": null }
},
"error": null, "timestamp": null
}
}🇳🇿 New Zealand - Death Check (NZ_DEATH_CHECK)
Input parameters | POST /sessions example |
|---|---|
Mandatory
Optional
| |
Sample response payload
The following info can be found in decision webhook payload and GET /decision endpoint's payload, in verifications.registryValidations object. Note that the payloads contain more parameters; to find info about them see the decision webhook and GET /decision endpoint's documentation.
{
"NZ_DEATH_CHECK": {
"status": "success",
"data": null,
"validations": {
"processing": { "result": "success", "reason": null },
"is_input_valid": { "result": "success", "reason": null },
"identity_is_valid": { "result": "success", "reason": null },
"first_name_match": { "result": "success", "reason": null },
"last_name_match": { "result": "success", "reason": null },
"address_street_match": { "result": "success", "reason": null },
"address_neighbourhood_match": { "result": "success", "reason": null },
"address_state_match": { "result": "success", "reason": null },
"address_postcode_match": { "result": "success", "reason": null }
},
"error": null, "timestamp": null
}
}🇳🇿 New Zealand - DIA Births (NZ_DIA_BIRTH)
Input parameters | POST /sessions example |
|---|---|
Mandatory
Optional
| |
Sample response payload
The following info can be found in decision webhook payload and GET /decision endpoint's payload, in verifications.registryValidations object. Note that the payloads contain more parameters; to find info about them see the decision webhook and GET /decision endpoint's documentation.
{
"NZ_DIA_BIRTH": {
"status": "success",
"data": null,
"validations": {
"processing": { "result": "success", "reason": null },
"is_input_valid": { "result": "success", "reason": null },
"consent_obtained": { "result": "success", "reason": null },
"identity_is_valid": { "result": "success", "reason": null },
"first_name_match": { "result": "success", "reason": null },
"middle_name_match": { "result": "success", "reason": null },
"last_name_match": { "result": "success", "reason": null },
"date_of_birth_match": { "result": "success", "reason": null }
},
"error": null, "timestamp": null
}
}🇳🇿 New Zealand - DIA Citizenship (NZ_DIA_CITIZENSHIP)
Input parameters | POST /sessions example |
|---|---|
Mandatory
Optional
| |
Sample response payload
The following info can be found in decision webhook payload and GET /decision endpoint's payload, in verifications.registryValidations object. Note that the payloads contain more parameters; to find info about them see the decision webhook and GET /decision endpoint's documentation.
{
"NZ_DIA_CITIZENSHIP": {
"status": "success",
"data": null,
"validations": {
"processing": { "result": "success", "reason": null },
"is_input_valid": { "result": "success", "reason": null },
"consent_obtained": { "result": "success", "reason": null },
"identity_is_valid": { "result": "success", "reason": null },
"first_name_match": { "result": "success", "reason": null },
"middle_name_match": { "result": "success", "reason": null },
"last_name_match": { "result": "success", "reason": null },
"date_of_birth_match": { "result": "success", "reason": null }
},
"error": null, "timestamp": null
}
}🇳🇿 New Zealand - DIA Passport (NZ_DIA_PASSPORT)
Input parameters | POST /sessions example |
|---|---|
Mandatory
Optional
| |
Sample response payload
The following info can be found in decision webhook payload and GET /decision endpoint's payload, in verifications.registryValidations object. Note that the payloads contain more parameters; to find info about them see the decision webhook and GET /decision endpoint's documentation.
{
"NZ_DIA_PASSPORT": {
"status": "success",
"data": null,
"validations": {
"processing": { "result": "success", "reason": null },
"is_input_valid": { "result": "success", "reason": null },
"consent_obtained": { "result": "success", "reason": null },
"identity_is_valid": { "result": "success", "reason": null },
"first_name_match": { "result": "success", "reason": null },
"middle_name_match": { "result": "success", "reason": null },
"last_name_match": { "result": "success", "reason": null },
"date_of_birth_match": { "result": "success", "reason": null },
"document_number_match": { "result": "success", "reason": null }
},
"error": null, "timestamp": null
}
}🇳🇿 New Zealand - Drivers Licence (NZ_DRIVER_LICENCE)
Input parameters | POST /sessions example |
|---|---|
Mandatory
Optional
| |
Sample response payload
The following info can be found in decision webhook payload and GET /decision endpoint's payload, in verifications.registryValidations object. Note that the payloads contain more parameters; to find info about them see the decision webhook and GET /decision endpoint's documentation.
{
"NZ_DRIVER_LICENCE": {
"status": "success",
"data": null,
"validations": {
"processing": { "result": "success", "reason": null },
"is_input_valid": { "result": "success", "reason": null },
"consent_obtained": { "result": "success", "reason": null },
"identity_is_valid": { "result": "success", "reason": null },
"first_name_match": { "result": "success", "reason": null },
"middle_name_match": { "result": "success", "reason": null },
"last_name_match": { "result": "success", "reason": null },
"date_of_birth_match": { "result": "success", "reason": null },
"document_number_match": { "result": "success", "reason": null },
"document_version_match": { "result": "success", "reason": null }
},
"error": null, "timestamp": null
}
}🇳🇿 New Zealand - LINZ Property (NZ_LINZ_PROPERTY)
Input parameters | POST /sessions example |
|---|---|
Mandatory
Optional
| |
Sample response payload
The following info can be found in decision webhook payload and GET /decision endpoint's payload, in verifications.registryValidations object. Note that the payloads contain more parameters; to find info about them see the decision webhook and GET /decision endpoint's documentation.
{
"NZ_LINZ_PROPERTY": {
"status": "success",
"data": null,
"validations": {
"processing": { "result": "success", "reason": null },
"is_input_valid": { "result": "success", "reason": null },
"identity_is_valid": { "result": "success", "reason": null },
"first_name_match": { "result": "success", "reason": null },
"last_name_match": { "result": "success", "reason": null },
"middle_name_match": { "result": "success", "reason": null },
"date_of_birth_match": { "result": "success", "reason": null },
"phone_number_match": { "result": "success", "reason": null },
"land_line_phone_number_match": { "result": "success", "reason": null },
"address_street_match": { "result": "success", "reason": null },
"address_neighbourhood_match": { "result": "success", "reason": null },
"address_state_match": { "result": "success", "reason": null },
"address_postcode_match": { "result": "success", "reason": null }
},
"error": null, "timestamp": null
}
}🇳🇿 New Zealand - Residential (NZ_RESIDENTIAL)
Input parameters | POST /sessions example |
|---|---|
Mandatory
Optional
| |
Sample response payload
The following info can be found in decision webhook payload and GET /decision endpoint's payload, in verifications.registryValidations object. Note that the payloads contain more parameters; to find info about them see the decision webhook and GET /decision endpoint's documentation.
{
"NZ_RESIDENTIAL": {
"status": "success",
"data": null,
"validations": {
"processing": { "result": "success", "reason": null },
"is_input_valid": { "result": "success", "reason": null },
"identity_is_valid": { "result": "success", "reason": null },
"first_name_match": { "result": "success", "reason": null },
"last_name_match": { "result": "success", "reason": null },
"middle_name_match": { "result": "success", "reason": null },
"date_of_birth_match": { "result": "success", "reason": null },
"phone_number_match": { "result": "success", "reason": null },
"land_line_phone_number_match": { "result": "success", "reason": null },
"address_street_match": { "result": "success", "reason": null },
"address_neighbourhood_match": { "result": "success", "reason": null },
"address_state_match": { "result": "success", "reason": null },
"address_postcode_match": { "result": "success", "reason": null }
},
"error": null, "timestamp": null
}
}🇳🇿 New Zealand - Utility (NZ_UTILITY)
Input parameters | POST /sessions example |
|---|---|
Mandatory
Optional
| |
Sample response payload
The following info can be found in decision webhook payload and GET /decision endpoint's payload, in verifications.registryValidations object. Note that the payloads contain more parameters; to find info about them see the decision webhook and GET /decision endpoint's documentation.
{
"NZ_UTILITY": {
"status": "success",
"data": null,
"validations": {
"processing": { "result": "success", "reason": null },
"is_input_valid": { "result": "success", "reason": null },
"consent_obtained": { "result": "success", "reason": null },
"identity_is_valid": { "result": "success", "reason": null },
"first_name_match": { "result": "success", "reason": null },
"last_name_match": { "result": "success", "reason": null },
"date_of_birth_match": { "result": "success", "reason": null },
"address_street_match": { "result": "success", "reason": null },
"address_neighbourhood_match": { "result": "success", "reason": null },
"address_state_match": { "result": "success", "reason": null },
"address_postcode_match": { "result": "success", "reason": null }
},
"error": null, "timestamp": null
}
}🇳🇿 New Zealand - Yellow Pages (NZ_YELLOW_PAGES)
Input parameters | POST /sessions example |
|---|---|
Mandatory
Optional
| |
Sample response payload
The following info can be found in decision webhook payload and GET /decision endpoint's payload, in verifications.registryValidations object. Note that the payloads contain more parameters; to find info about them see the decision webhook and GET /decision endpoint's documentation.
{
"NZ_YELLOW_PAGES": {
"status": "success",
"data": null,
"validations": {
"processing": { "result": "success", "reason": null },
"is_input_valid": { "result": "success", "reason": null },
"identity_is_valid": { "result": "success", "reason": null },
"first_name_match": { "result": "success", "reason": null },
"last_name_match": { "result": "success", "reason": null },
"land_line_phone_number_match": { "result": "success", "reason": null },
"address_postcode_match": { "result": "success", "reason": null },
"address_street_match": { "result": "success", "reason": null },
"address_neighbourhood_match": { "result": "success", "reason": null },
"address_state_match": { "result": "success", "reason": null }
},
"error": null, "timestamp": null
}
}🇵🇭 Philippines - Credit Bureau (PH_CREDIT_BUREAU)
Input parameters | POST /sessions example |
|---|---|
Mandatory
Optional
| |
Sample response payload
The following info can be found in decision webhook payload and GET /decision endpoint's payload, in verifications.registryValidations object. Note that the payloads contain more parameters; to find info about them see the decision webhook and GET /decision endpoint's documentation.
{
"PH_CREDIT_BUREAU": {
"status": "success",
"data": null,
"validations": {
"processing": { "result": "success", "reason": null },
"is_input_valid": { "result": "success", "reason": null },
"consent_obtained": { "result": "success", "reason": null },
"identity_is_valid": { "result": "success", "reason": null },
"first_name_match": { "result": "success", "reason": null },
"middle_name_match": { "result": "success", "reason": null },
"last_name_match": { "result": "success", "reason": null },
"full_name_match": { "result": "success", "reason": null },
"date_of_birth_match": { "result": "success", "reason": null },
"id_number_match": { "result": "success", "reason": null },
"address_full_address_match": { "result": "success", "reason": null },
"address_street_match": { "result": "success", "reason": null },
"address_city_match": { "result": "success", "reason": null },
"address_state_match": { "result": "success", "reason": null },
"address_postcode_match": { "result": "success", "reason": null },
"address_neighbourhood_match": { "result": "success", "reason": null }
},
"error": null, "timestamp": null
}
}🇵🇭 Philippines - Residential (PH_RESIDENTIAL)
Input parameters | POST /sessions example |
|---|---|
Mandatory
Optional
| |
Sample response payload
The following info can be found in decision webhook payload and GET /decision endpoint's payload, in verifications.registryValidations object. Note that the payloads contain more parameters; to find info about them see the decision webhook and GET /decision endpoint's documentation.
{
"PH_RESIDENTIAL": {
"status": "success",
"data": null,
"validations": {
"processing": { "result": "success", "reason": null },
"is_input_valid": { "result": "success", "reason": null },
"consent_obtained": { "result": "success", "reason": null },
"identity_is_valid": { "result": "success", "reason": null },
"first_name_match": { "result": "success", "reason": null },
"middle_name_match": { "result": "success", "reason": null },
"last_name_match": { "result": "success", "reason": null },
"full_name_match": { "result": "success", "reason": null },
"date_of_birth_match": { "result": "success", "reason": null },
"address_full_address_match": { "result": "success", "reason": null },
"address_street_match": { "result": "success", "reason": null },
"address_city_match": { "result": "success", "reason": null },
"address_state_match": { "result": "success", "reason": null },
"address_postcode_match": { "result": "success", "reason": null },
"address_neighbourhood_match": { "result": "success", "reason": null }
},
"error": null, "timestamp": null
}
}🇸🇬 Singapore - Credit Bureau (SG_CREDIT_BUREAU)
Input parameters | POST /sessions example |
|---|---|
Mandatory
Optional
| |
Sample response payload
The following info can be found in decision webhook payload and GET /decision endpoint's payload, in verifications.registryValidations object. Note that the payloads contain more parameters; to find info about them see the decision webhook and GET /decision endpoint's documentation.
{
"SG_CREDIT_BUREAU": {
"status": "success",
"data": null,
"validations": {
"processing": { "result": "success", "reason": null },
"is_input_valid": { "result": "success", "reason": null },
"consent_obtained": { "result": "success", "reason": null },
"identity_is_valid": { "result": "success", "reason": null },
"first_name_match": { "result": "success", "reason": null },
"middle_name_match": { "result": "not_applicable", "reason": "input_not_provided" },
"last_name_match": { "result": "success", "reason": null },
"full_name_match": { "result": "success", "reason": null },
"date_of_birth_match": { "result": "success", "reason": null },
"id_number_match": { "result": "success", "reason": null },
"address_street_match": { "result": "success", "reason": null },
"address_city_match": { "result": "success", "reason": null },
"address_state_match": { "result": "success", "reason": null },
"address_neighbourhood_match": { "result": "success", "reason": null }
},
"error": null, "timestamp": null
}
}🇸🇬 Singapore - Utility (SG_UTILITY)
Input parameters | POST /sessions example |
|---|---|
Mandatory
Optional
| |
Sample response payload
The following info can be found in decision webhook payload and GET /decision endpoint's payload, in verifications.registryValidations object. Note that the payloads contain more parameters; to find info about them see the decision webhook and GET /decision endpoint's documentation.
{
"SG_UTILITY": {
"status": "success",
"data": null,
"validations": {
"processing": { "result": "success", "reason": null },
"is_input_valid": { "result": "success", "reason": null },
"identity_is_valid": { "result": "success", "reason": null },
"first_name_match": { "result": "success", "reason": null },
"middle_name_match": { "result": "not_applicable", "reason": "input_not_provided" },
"last_name_match": { "result": "success", "reason": null },
"full_name_match": { "result": "success", "reason": null },
"date_of_birth_match": { "result": "success", "reason": null },
"phone_number_match": { "result": "success", "reason": null },
"address_street_match": { "result": "success", "reason": null },
"address_city_match": { "result": "success", "reason": null },
"address_state_match": { "result": "success", "reason": null },
"address_neighbourhood_match": { "result": "success", "reason": null }
},
"error": null, "timestamp": null
}
}🇹🇭 Thailand - National ID (TH_NATIONAL_ID)
Input parameters | POST /sessions example |
|---|---|
Mandatory
Optional
| |
Sample response payload
The following info can be found in decision webhook payload and GET /decision endpoint's payload, in verifications.registryValidations object. Note that the payloads contain more parameters; to find info about them see the decision webhook and GET /decision endpoint's documentation.
{
"TH_NATIONAL_ID": {
"status": "success",
"data": null,
"validations": {
"processing": { "result": "success", "reason": null },
"is_input_valid": { "result": "success", "reason": null },
"consent_obtained": { "result": "success", "reason": null },
"identity_is_valid": { "result": "success", "reason": null },
"first_name_match": { "result": "success", "reason": null },
"middle_name_match": { "result": "not_applicable", "reason": "input_not_provided" },
"last_name_match": { "result": "success", "reason": null },
"full_name_match": { "result": "success", "reason": null },
"date_of_birth_match": { "result": "success", "reason": null },
"id_number_match": { "result": "success", "reason": null },
"address_full_address_match": { "result": "success", "reason": null },
"address_street_match": { "result": "success", "reason": null },
"address_city_match": { "result": "success", "reason": null },
"address_state_match": { "result": "success", "reason": null },
"address_neighbourhood_match": { "result": "success", "reason": null }
},
"error": null, "timestamp": null
}
}LATAM
🇦🇷 Argentina - Citizens (AR_CITIZENS)
Input parameters | POST /sessions example |
|---|---|
Mandatory
Optional
| |
Sample response payload
The following info can be found in decision webhook payload and GET /decision endpoint's payload, in verifications.registryValidations object. Note that the payloads contain more parameters; to find info about them see the decision webhook and GET /decision endpoint's documentation.
{
"AR_CITIZENS": {
"status": "success",
"data": null,
"validations": {
"processing": { "result": "success", "reason": null },
"is_input_valid": { "result": "success", "reason": null },
"identity_is_valid": { "result": "success", "reason": null },
"first_name_match": { "result": "success", "reason": null },
"last_name_match": { "result": "success", "reason": null },
"middle_name_match": { "result": "success", "reason": null },
"date_of_birth_match": { "result": "success", "reason": null },
"id_number_match": { "result": "success", "reason": null }
},
"error": null, "timestamp": null
}
}🇦🇷 Argentina - Credit Bureau (AR_CREDIT_BUREAU)
Input parameters | POST /sessions example |
|---|---|
Mandatory
Optional
| |
Sample response payload
The following info can be found in decision webhook payload and GET /decision endpoint's payload, in verifications.registryValidations object. Note that the payloads contain more parameters; to find info about them see the decision webhook and GET /decision endpoint's documentation.
{
"AR_CREDIT_BUREAU": {
"status": "success",
"data": null,
"validations": {
"processing": { "result": "success", "reason": null },
"is_input_valid": { "result": "success", "reason": null },
"consent_obtained": { "result": "success", "reason": null },
"identity_is_valid": { "result": "success", "reason": null },
"first_name_match": { "result": "success", "reason": null },
"last_name_match": { "result": "success", "reason": null },
"middle_name_match": { "result": "success", "reason": null },
"date_of_birth_match": { "result": "success", "reason": null },
"id_number_match": { "result": "success", "reason": null },
"address_street_match": { "result": "success", "reason": null },
"address_city_match": { "result": "success", "reason": null },
"address_postcode_match": { "result": "success", "reason": null }
},
"error": null, "timestamp": null
}
}🇦🇷 Argentina - National ID (AR_NATIONAL_ID)
Input parameters | POST /sessions example |
|---|---|
Mandatory
Optional
| |
Sample response payload
The following info can be found in decision webhook payload and GET /decision endpoint's payload, in verifications.registryValidations object. Note that the payloads contain more parameters; to find info about them see the decision webhook and GET /decision endpoint's documentation.
{
"AR_NATIONAL_ID": {
"status": "success",
"data": null,
"validations": {
"processing": { "result": "success", "reason": null },
"is_input_valid": { "result": "success", "reason": null },
"identity_is_valid": { "result": "success", "reason": null },
"first_name_match": { "result": "success", "reason": null },
"last_name_match": { "result": "success", "reason": null },
"middle_name_match": { "result": "success", "reason": null },
"date_of_birth_match": { "result": "success", "reason": null },
"gender_match": { "result": "success", "reason": null },
"id_number_match": { "result": "success", "reason": null },
"address_street_match": { "result": "success", "reason": null },
"address_city_match": { "result": "success", "reason": null },
"address_state_match": { "result": "success", "reason": null },
"address_postcode_match": { "result": "success", "reason": null }
},
"error": null, "timestamp": null
}
}🇦🇷 Argentina - Tax Registration (AR_TAX_REGISTRATION)
Input parameters | POST /sessions example |
|---|---|
Mandatory
Optional
| |
Sample response payload
The following info can be found in decision webhook payload and GET /decision endpoint's payload, in verifications.registryValidations object. Note that the payloads contain more parameters; to find info about them see the decision webhook and GET /decision endpoint's documentation.
{
"AR_TAX_REGISTRATION": {
"status": "success",
"data": null,
"validations": {
"processing": { "result": "success", "reason": null },
"is_input_valid": { "result": "success", "reason": null },
"identity_is_valid": { "result": "success", "reason": null },
"first_name_match": { "result": "success", "reason": null },
"last_name_match": { "result": "success", "reason": null },
"middle_name_match": { "result": "success", "reason": null },
"date_of_birth_match": { "result": "success", "reason": null },
"id_number_match": { "result": "success", "reason": null },
"address_street_match": { "result": "success", "reason": null },
"address_city_match": { "result": "success", "reason": null },
"address_state_match": { "result": "success", "reason": null },
"address_postcode_match": { "result": "success", "reason": null }
},
"error": null, "timestamp": null
}
}🇧🇷 Brazil - National ID (BR_NATIONAL_ID)
Input parameters | POST /sessions example |
|---|---|
Mandatory
Optional
| |
Sample response payload
The following info can be found in decision webhook payload and GET /decision endpoint's payload, in verifications.registryValidations object. Note that the payloads contain more parameters; to find info about them see the decision webhook and GET /decision endpoint's documentation.
{
"BR_NATIONAL_ID": {
"status": "success",
"data": null,
"validations": {
"processing": { "result": "success", "reason": null },
"is_input_valid": { "result": "success", "reason": null },
"identity_is_valid": { "result": "success", "reason": null },
"first_name_match": { "result": "success", "reason": null },
"last_name_match": { "result": "success", "reason": null },
"middle_name_match": { "result": "success", "reason": null },
"date_of_birth_match": { "result": "success", "reason": null },
"id_number_match": { "result": "success", "reason": null },
"address_street_match": { "result": "success", "reason": null },
"address_city_match": { "result": "success", "reason": null },
"address_state_match": { "result": "success", "reason": null },
"address_postcode_match": { "result": "success", "reason": null }
},
"error": null, "timestamp": null
}
}🇧🇷 Brazil - National ID 2 (BR_NATIONAL_ID_2)
Input parameters | POST /sessions example |
|---|---|
Mandatory
Optional
| |
Sample response payload
The following info can be found in decision webhook payload and GET /decision endpoint's payload, in verifications.registryValidations object. Note that the payloads contain more parameters; to find info about them see the decision webhook and GET /decision endpoint's documentation.
{
"BR_NATIONAL_ID_2": {
"status": "success",
"data": null,
"validations": {
"processing": { "result": "success", "reason": null },
"is_input_valid": { "result": "success", "reason": null },
"identity_is_valid": { "result": "success", "reason": null },
"first_name_match": { "result": "success", "reason": null },
"middle_name_match": { "result": "success", "reason": null },
"last_name_match": { "result": "success", "reason": null },
"full_name_match": { "result": "success", "reason": null },
"date_of_birth_match": { "result": "success", "reason": null },
"id_number_match": { "result": "success", "reason": null },
"address_street_match": { "result": "success", "reason": null },
"address_city_match": { "result": "success", "reason": null },
"address_state_match": { "result": "success", "reason": null },
"address_postcode_match": { "result": "success", "reason": null },
"address_neighbourhood_match": { "result": "success", "reason": null }
},
"error": null, "timestamp": null
}
}🇧🇷 Brazil - Phone (BR_PHONE)
Input parameters | POST /sessions example |
|---|---|
Mandatory
Optional
| |
Sample response payload
The following info can be found in decision webhook payload and GET /decision endpoint's payload, in verifications.registryValidations object. Note that the payloads contain more parameters; to find info about them see the decision webhook and GET /decision endpoint's documentation.
{
"BR_PHONE": {
"status": "success",
"data": null,
"validations": {
"processing": { "result": "success", "reason": null },
"is_input_valid": { "result": "success", "reason": null },
"identity_is_valid": { "result": "success", "reason": null },
"first_name_match": { "result": "success", "reason": null },
"middle_name_match": { "result": "success", "reason": null },
"last_name_match": { "result": "success", "reason": null },
"full_name_match": { "result": "success", "reason": null },
"date_of_birth_match": { "result": "success", "reason": null },
"phone_number_match": { "result": "success", "reason": null },
"address_street_match": { "result": "success", "reason": null },
"address_city_match": { "result": "success", "reason": null },
"address_state_match": { "result": "success", "reason": null },
"address_postcode_match": { "result": "success", "reason": null }
},
"error": null, "timestamp": null
}
}🇧🇷 Brazil - Residential (BR_RESIDENTIAL)
Input parameters | POST /sessions example |
|---|---|
Mandatory
Optional
| |
Sample response payload
The following info can be found in decision webhook payload and GET /decision endpoint's payload, in verifications.registryValidations object. Note that the payloads contain more parameters; to find info about them see the decision webhook and GET /decision endpoint's documentation.
{
"BR_RESIDENTIAL": {
"status": "success",
"data": null,
"validations": {
"processing": { "result": "success", "reason": null },
"is_input_valid": { "result": "success", "reason": null },
"identity_is_valid": { "result": "success", "reason": null },
"first_name_match": { "result": "success", "reason": null },
"middle_name_match": { "result": "success", "reason": null },
"last_name_match": { "result": "success", "reason": null },
"full_name_match": { "result": "success", "reason": null },
"date_of_birth_match": { "result": "success", "reason": null },
"phone_number_match": { "result": "success", "reason": null },
"id_number_match": { "result": "success", "reason": null },
"address_street_match": { "result": "success", "reason": null },
"address_city_match": { "result": "success", "reason": null },
"address_postcode_match": { "result": "success", "reason": null },
"address_state_match": { "result": "success", "reason": null },
"address_neighbourhood_match": { "result": "success", "reason": null }
},
"error": null, "timestamp": null
}
}🇧🇷 Brazil - Tax Registration (BR_TAX_REGISTRATION)
Input parameters | POST /sessions example |
|---|---|
Mandatory
Optional
| |
Sample response payload
The following info can be found in decision webhook payload and GET /decision endpoint's payload, in verifications.registryValidations object. Note that the payloads contain more parameters; to find info about them see the decision webhook and GET /decision endpoint's documentation.
{
"BR_TAX_REGISTRATION": {
"status": "success",
"data": null,
"validations": {
"processing": { "result": "success", "reason": null },
"is_input_valid": { "result": "success", "reason": null },
"identity_is_valid": { "result": "success", "reason": null },
"first_name_match": { "result": "success", "reason": null },
"middle_name_match": { "result": "success", "reason": null },
"last_name_match": { "result": "success", "reason": null },
"full_name_match": { "result": "success", "reason": null },
"date_of_birth_match": { "result": "success", "reason": null },
"id_number_match": { "result": "success", "reason": null }
},
"error": null, "timestamp": null
}
}🇨🇱 Chile National ID (CL_NATIONAL_ID)
Input parameters | POST /sessions example |
|---|---|
Mandatory
Optional
| |
Sample response payload
The following info can be found in decision webhook payload and GET /decision endpoint's payload, in verifications.registryValidations object.
{
"CL_NATIONAL_ID": {
"status": "success",
"data": {
"firstName": "Carlos",
"lastName": "Gonzalez",
"middleName": "Andrés",
"nationalIdNo": "12345678-9",
"nationalIdNoStatus": "VALID"
},
"validations": {
"processing": { "result": "success", "reason": null },
"is_input_valid": { "result": "success", "reason": null },
"identity_is_valid": { "result": "success", "reason": null },
"first_name_match": { "result": "success", "reason": null },
"last_name_match": { "result": "success", "reason": null },
"middle_name_match": { "result": "success", "reason": null },
"date_of_birth_match": { "result": "success", "reason": null },
"id_number_match": { "result": "success", "reason": null }
},
"error": null, "timestamp": null
}
}🇨🇱 Chile Residential (CL_RESIDENTIAL)
Input parameters | POST /sessions example |
|---|---|
Mandatory
Optional
| |
Sample response payload
The following info can be found in decision webhook payload and GET /decision endpoint's payload, in verifications.registryValidations object.
{
"CL_RESIDENTIAL": {
"status": "failure",
"data": {
"address1": "Av Libertador Bernardo O'Higgins 1234",
"firstName": "Valentina",
"lastName": "Muñoz",
"middleName": "Isabel"
},
"validations": {
"processing": { "result": "success", "reason": null },
"is_input_valid": { "result": "success", "reason": null },
"identity_is_valid": { "result": "failure", "reason": "person_not_found" },
"first_name_match": { "result": "not_applicable", "reason": "output_not_received" },
"last_name_match": { "result": "not_applicable", "reason": "output_not_received" },
"middle_name_match": { "result": "not_applicable", "reason": "output_not_received" },
"address_street_match": { "result": "not_applicable", "reason": "output_not_received" },
"address_city_match": { "result": "not_applicable", "reason": "output_not_received" }
},
"error": null, "timestamp": null
}
}🇨🇴 Colombia - National ID (CO_NATIONAL_ID)
Input parameters | POST /sessions example |
|---|---|
Mandatory
Optional
| |
Sample response payload
The following info can be found in decision webhook payload and GET /decision endpoint's payload, in verifications.registryValidations object. Note that the payloads contain more parameters; to find info about them see the decision webhook and GET /decision endpoint's documentation.
{
"CO_NATIONAL_ID": {
"status": "success",
"data": null,
"error": null,
"timestamp": null,
"validations": {
"processing": { "result": "success", "reason": null },
"is_input_valid": { "result": "success", "reason": null },
"consent_obtained": { "result": "success", "reason": null },
"identity_is_valid": { "result": "success", "reason": null },
"first_name_match": { "result": "success", "reason": null },
"middle_name_match": { "result": "success", "reason": null },
"last_name_match": { "result": "success", "reason": null },
"full_name_match": { "result": "success", "reason": null },
"date_of_birth_match": { "result": "success", "reason": null },
"id_number_match": { "result": "success", "reason": null }
}
}
}🇲🇽 Mexico - National ID (MX_NATIONAL_ID)
Input parameters | POST /sessions example |
|---|---|
Mandatory
Optional
| |
Sample response payload
The following info can be found in decision webhook payload and GET /decision endpoint's payload, in verifications.registryValidations object. Note that the payloads contain more parameters; to find info about them see the decision webhook and GET /decision endpoint's documentation.
{
"MX_NATIONAL_ID": {
"status": "success",
"data": null,
"error": null,
"timestamp": null,
"validations": {
"processing": { "result": "success", "reason": null },
"is_input_valid": { "result": "success", "reason": null },
"identity_is_valid": { "result": "success", "reason": null },
"first_name_match": { "result": "success", "reason": null },
"last_name_match": { "result": "success", "reason": null },
"middle_name_match": { "result": "not_applicable", "reason": "input_not_provided" },
"date_of_birth_match": { "result": "success", "reason": null },
"gender_match": { "result": "success", "reason": null },
"id_number_match": { "result": "success", "reason": null }
}
}
}🇲🇽 Mexico - Residential (MX_RESIDENTIAL)
Input parameters | POST /sessions example |
|---|---|
Mandatory
Optional
| |
Sample response payload
The following info can be found in decision webhook payload and GET /decision endpoint's payload, in verifications.registryValidations object. Note that the payloads contain more parameters; to find info about them see the decision webhook and GET /decision endpoint's documentation.
{
"MX_RESIDENTIAL": {
"status": "success",
"data": null,
"error": null,
"timestamp": null,
"validations": {
"processing": { "result": "success", "reason": null },
"is_input_valid": { "result": "success", "reason": null },
"identity_is_valid": { "result": "success", "reason": null },
"first_name_match": { "result": "success", "reason": null },
"last_name_match": { "result": "success", "reason": null },
"middle_name_match": { "result": "not_applicable", "reason": "input_not_provided" },
"phone_number_match": { "result": "success", "reason": null },
"address_street_match": { "result": "success", "reason": null },
"address_city_match": { "result": "success", "reason": null },
"address_state_match": { "result": "success", "reason": null },
"address_postcode_match": { "result": "success", "reason": null }
}
}
}🇵🇪 Peru - National ID (PE_NATIONAL_ID)
Input parameters | POST /sessions example |
|---|---|
Mandatory
Optional
| |
Sample response payload
The following info can be found in decision webhook payload and GET /decision endpoint's payload, in verifications.registryValidations object. Note that the payloads contain more parameters; to find info about them see the decision webhook and GET /decision endpoint's documentation.
{
"PE_NATIONAL_ID": {
"status": "success",
"data": null,
"error": null,
"timestamp": null,
"validations": {
"processing": { "result": "success", "reason": null },
"is_input_valid": { "result": "success", "reason": null },
"identity_is_valid": { "result": "success", "reason": null },
"first_name_match": { "result": "success", "reason": null },
"last_name_match": { "result": "success", "reason": null },
"middle_name_match": { "result": "success", "reason": null },
"date_of_birth_match": { "result": "success", "reason": null },
"id_number_match": { "result": "success", "reason": null }
}
}
}🇵🇪 Peru - Residential (PE_RESIDENTIAL)
Input parameters | POST /sessions example |
|---|---|
Mandatory
Optional
| |
Sample response payload
The following info can be found in decision webhook payload and GET /decision endpoint's payload, in verifications.registryValidations object. Note that the payloads contain more parameters; to find info about them see the decision webhook and GET /decision endpoint's documentation.
{
"PE_RESIDENTIAL": {
"status": "success",
"data": null,
"error": null,
"timestamp": null,
"validations": {
"processing": { "result": "success", "reason": null },
"is_input_valid": { "result": "success", "reason": null },
"identity_is_valid": { "result": "success", "reason": null },
"first_name_match": { "result": "success", "reason": null },
"last_name_match": { "result": "success", "reason": null },
"middle_name_match": { "result": "success", "reason": null },
"gender_match": { "result": "success", "reason": null },
"land_line_phone_number_match": { "result": "success", "reason": null },
"address_street_match": { "result": "success", "reason": null },
"address_city_match": { "result": "success", "reason": null }
}
}
}🇵🇪 Peru - Tax Registration (PE_TAX_REGISTRATION)
Input parameters | POST /sessions example |
|---|---|
Mandatory
Optional
| |
Sample response payload
The following info can be found in decision webhook payload and GET /decision endpoint's payload, in verifications.registryValidations object. Note that the payloads contain more parameters; to find info about them see the decision webhook and GET /decision endpoint's documentation.
{
"PE_TAX_REGISTRATION": {
"status": "success",
"data": null,
"error": null,
"timestamp": null,
"validations": {
"processing": { "result": "success", "reason": null },
"is_input_valid": { "result": "success", "reason": null },
"identity_is_valid": { "result": "success", "reason": null },
"first_name_match": { "result": "success", "reason": null },
"last_name_match": { "result": "success", "reason": null },
"middle_name_match": { "result": "success", "reason": null },
"date_of_birth_match": { "result": "success", "reason": null },
"id_number_match": { "result": "success", "reason": null }
}
}
}EMEA
🇦🇹 Austria - Credit Bureau (AT_CREDIT_BUREAU)
Input parameters | POST /sessions example |
|---|---|
Mandatory
Optional
| |
Sample response payload
The following info can be found in decision webhook payload and GET /decision endpoint's payload, in verifications.registryValidations object. Note that the payloads contain more parameters; to find info about them see the decision webhook and GET /decision endpoint's documentation.
{
"AT_CREDIT_BUREAU": {
"status": "success",
"data": null,
"error": null,
"timestamp": null,
"validations": {
"processing": { "result": "success", "reason": null },
"is_input_valid": { "result": "success", "reason": null },
"consent_obtained": { "result": "success", "reason": null },
"identity_is_valid": { "result": "success", "reason": null },
"first_name_match": { "result": "success", "reason": null },
"last_name_match": { "result": "success", "reason": null },
"date_of_birth_match": { "result": "success", "reason": null },
"address_street_match": { "result": "success", "reason": null },
"address_city_match": { "result": "success", "reason": null },
"address_postcode_match": { "result": "success", "reason": null }
}
}
}🇧🇪 Belgium - Consumer (BE_CONSUMER)
Input parameters | POST /sessions example |
|---|---|
Mandatory
Optional
| |
Sample response payload
The following info can be found in decision webhook payload and GET /decision endpoint's payload, in verifications.registryValidations object. Note that the payloads contain more parameters; to find info about them see the decision webhook and GET /decision endpoint's documentation.
{
"BE_CONSUMER": {
"status": "success",
"data": null,
"error": null,
"timestamp": null,
"validations": {
"processing": { "result": "success", "reason": null },
"is_input_valid": { "result": "success", "reason": null },
"identity_is_valid": { "result": "success", "reason": null },
"first_name_match": { "result": "success", "reason": null },
"last_name_match": { "result": "success", "reason": null },
"date_of_birth_match": { "result": "success", "reason": null },
"phone_number_match": { "result": "success", "reason": null },
"email_match": { "result": "success", "reason": null },
"address_street_match": { "result": "success", "reason": null },
"address_city_match": { "result": "success", "reason": null },
"address_state_match": { "result": "success", "reason": null },
"address_postcode_match": { "result": "success", "reason": null }
}
}
}🇧🇪 Belgium - Residential (BE_RESIDENTIAL)
Input parameters | POST /sessions example |
|---|---|
Mandatory
Optional
| |
Sample response payload
The following info can be found in decision webhook payload and GET /decision endpoint's payload, in verifications.registryValidations object. Note that the payloads contain more parameters; to find info about them see the decision webhook and GET /decision endpoint's documentation.
{
"BE_RESIDENTIAL": {
"status": "success",
"data": null,
"error": null,
"timestamp": null,
"validations": {
"processing": { "result": "success", "reason": null },
"is_input_valid": { "result": "success", "reason": null },
"identity_is_valid": { "result": "success", "reason": null },
"first_name_match": { "result": "success", "reason": null },
"last_name_match": { "result": "success", "reason": null },
"middle_name_match": { "result": "success", "reason": null },
"date_of_birth_match": { "result": "success", "reason": null },
"phone_number_match": { "result": "success", "reason": null },
"email_match": { "result": "success", "reason": null },
"address_street_match": { "result": "success", "reason": null },
"address_postcode_match": { "result": "success", "reason": null },
"address_city_match": { "result": "success", "reason": null }
}
}
}🇧🇪 Belgium - Utility (BE_UTILITY)
Input parameters | POST /sessions example |
|---|---|
Mandatory
Optional
| |
Sample response payload
The following info can be found in decision webhook payload and GET /decision endpoint's payload, in verifications.registryValidations object. Note that the payloads contain more parameters; to find info about them see the decision webhook and GET /decision endpoint's documentation.
{
"BE_UTILITY": {
"status": "success",
"data": null,
"error": null,
"timestamp": null,
"validations": {
"processing": { "result": "success", "reason": null },
"is_input_valid": { "result": "success", "reason": null },
"identity_is_valid": { "result": "success", "reason": null },
"first_name_match": { "result": "success", "reason": null },
"last_name_match": { "result": "success", "reason": null },
"date_of_birth_match": { "result": "success", "reason": null },
"phone_number_match": { "result": "success", "reason": null },
"email_match": { "result": "success", "reason": null },
"address_street_match": { "result": "success", "reason": null },
"address_city_match": { "result": "success", "reason": null },
"address_postcode_match": { "result": "success", "reason": null }
}
}
}🇨🇿 Czech Republic - Residential (CZ_RESIDENTIAL)
Input parameters | POST /sessions example |
|---|---|
Mandatory
Optional
| |
Sample response payload
The following info can be found in decision webhook payload and GET /decision endpoint's payload, in verifications.registryValidations object. Note that the payloads contain more parameters; to find info about them see the decision webhook and GET /decision endpoint's documentation.
{
"CZ_RESIDENTIAL": {
"status": "success",
"data": null,
"error": null,
"timestamp": null,
"validations": {
"processing": { "result": "success", "reason": null },
"is_input_valid": { "result": "success", "reason": null },
"identity_is_valid": { "result": "success", "reason": null },
"first_name_match": { "result": "success", "reason": null },
"last_name_match": { "result": "success", "reason": null },
"date_of_birth_match": { "result": "success", "reason": null },
"address_street_match": { "result": "success", "reason": null },
"address_postcode_match": { "result": "success", "reason": null },
"address_city_match": { "result": "success", "reason": null }
}
}
}🇨🇿 Czech Republic - Residential 2 (CZ_RESIDENTIAL_2)
Input parameters | POST /sessions example |
|---|---|
Mandatory
Optional
| |
Sample response payload
The following info can be found in decision webhook payload and GET /decision endpoint's payload, in verifications.registryValidations object. Note that the payloads contain more parameters; to find info about them see the decision webhook and GET /decision endpoint's documentation.
{
"CZ_RESIDENTIAL_2": {
"status": "success",
"data": null,
"error": null,
"timestamp": null,
"validations": {
"processing": { "result": "success", "reason": null },
"is_input_valid": { "result": "success", "reason": null },
"identity_is_valid": { "result": "success", "reason": null },
"first_name_match": { "result": "success", "reason": null },
"last_name_match": { "result": "success", "reason": null },
"date_of_birth_match": { "result": "success", "reason": null },
"address_street_match": { "result": "success", "reason": null },
"address_city_match": { "result": "success", "reason": null }
}
}
}🇩🇰 Denmark - Consumer (DK_CONSUMER)
Input parameters | POST /sessions example |
|---|---|
Mandatory
Optional
| |
Sample response payload
The following info can be found in decision webhook payload and GET /decision endpoint's payload, in verifications.registryValidations object. Note that the payloads contain more parameters; to find info about them see the decision webhook and GET /decision endpoint's documentation.
{
"DK_CONSUMER": {
"status": "success",
"data": null,
"validations": {
"processing": { "result": "success", "reason": null },
"is_input_valid": { "result": "success", "reason": null },
"identity_is_valid": { "result": "success", "reason": null },
"first_name_match": { "result": "success", "reason": null },
"last_name_match": { "result": "success", "reason": null },
"date_of_birth_match": { "result": "success", "reason": null },
"phone_number_match": { "result": "success", "reason": null },
"email_match": { "result": "success", "reason": null },
"address_street_match": { "result": "success", "reason": null },
"address_city_match": { "result": "success", "reason": null },
"address_state_match": { "result": "success", "reason": null },
"address_postcode_match": { "result": "success", "reason": null }
},
"error": null,
"timestamp": null
}
}🇩🇰 Denmark - National ID (DK_NATIONAL_ID)
Input parameters | POST /sessions example |
|---|---|
Mandatory
Optional
| |
Sample response payload
The following info can be found in decision webhook payload and GET /decision endpoint's payload, in verifications.registryValidations object. Note that the payloads contain more parameters; to find info about them see the decision webhook and GET /decision endpoint's documentation.
{
"DK_NATIONAL_ID": {
"status": "success",
"data": null,
"validations": {
"processing": { "result": "success", "reason": null },
"is_input_valid": { "result": "success", "reason": null },
"identity_is_valid": { "result": "success", "reason": null },
"first_name_match": { "result": "success", "reason": null },
"last_name_match": { "result": "success", "reason": null },
"date_of_birth_match": { "result": "success", "reason": null },
"id_number_match": { "result": "success", "reason": null },
"address_street_match": { "result": "success", "reason": null },
"address_city_match": { "result": "success", "reason": null },
"address_postcode_match": { "result": "success", "reason": null }
},
"error": null,
"timestamp": null
}
}🇫🇮 Finland - Consumer (FI_CONSUMER)
Input parameters | POST /sessions example |
|---|---|
Mandatory
Optional
| |
Sample response payload
The following info can be found in decision webhook payload and GET /decision endpoint's payload, in verifications.registryValidations object. Note that the payloads contain more parameters; to find info about them see the decision webhook and GET /decision endpoint's documentation.
{
"FI_CONSUMER": {
"status": "success",
"data": null,
"validations": {
"processing": { "result": "success", "reason": null },
"is_input_valid": { "result": "success", "reason": null },
"identity_is_valid": { "result": "success", "reason": null },
"first_name_match": { "result": "success", "reason": null },
"last_name_match": { "result": "success", "reason": null },
"date_of_birth_match": { "result": "success", "reason": null },
"phone_number_match": { "result": "success", "reason": null },
"email_match": { "result": "success", "reason": null },
"address_street_match": { "result": "success", "reason": null },
"address_city_match": { "result": "success", "reason": null },
"address_state_match": { "result": "success", "reason": null },
"address_postcode_match": { "result": "success", "reason": null }
},
"error": null,
"timestamp": null
}
}🇫🇮 Finland - National ID (FI_NATIONAL_ID)
Input parameters | POST /sessions example |
|---|---|
Mandatory
Optional
| |
Sample response payload
The following info can be found in decision webhook payload and GET /decision endpoint's payload, in verifications.registryValidations object. Note that the payloads contain more parameters; to find info about them see the decision webhook and GET /decision endpoint's documentation.
{
"FI_NATIONAL_ID": {
"status": "success",
"data": null,
"validations": {
"processing": { "result": "success", "reason": null },
"is_input_valid": { "result": "success", "reason": null },
"identity_is_valid": { "result": "success", "reason": null },
"first_name_match": { "result": "success", "reason": null },
"last_name_match": { "result": "success", "reason": null },
"full_name_match": { "result": "success", "reason": null },
"date_of_birth_match": { "result": "success", "reason": null },
"id_number_match": { "result": "success", "reason": null },
"address_street_match": { "result": "success", "reason": null },
"address_city_match": { "result": "success", "reason": null },
"address_postcode_match": { "result": "success", "reason": null }
},
"error": null,
"timestamp": null
}
}🇫🇷 France - Consumer (FR_CONSUMER)
Input parameters | POST /sessions example |
|---|---|
Mandatory
Optional
| |
Sample response payload
The following info can be found in decision webhook payload and GET /decision endpoint's payload, in verifications.registryValidations object. Note that the payloads contain more parameters; to find info about them see the decision webhook and GET /decision endpoint's documentation.
{
"FR_CONSUMER": {
"status": "success",
"data": null,
"validations": {
"processing": { "result": "success", "reason": null },
"is_input_valid": { "result": "success", "reason": null },
"identity_is_valid": { "result": "success", "reason": null },
"first_name_match": { "result": "success", "reason": null },
"last_name_match": { "result": "success", "reason": null },
"date_of_birth_match": { "result": "success", "reason": null },
"phone_number_match": { "result": "success", "reason": null },
"email_match": { "result": "success", "reason": null },
"address_street_match": { "result": "success", "reason": null },
"address_city_match": { "result": "success", "reason": null },
"address_postcode_match": { "result": "success", "reason": null }
},
"error": null,
"timestamp": null
}
}🇫🇷 France - Phone (FR_PHONE)
Input parameters | POST /sessions example |
|---|---|
Mandatory
Optional
| |
Sample response payload
The following info can be found in decision webhook payload and GET /decision endpoint's payload, in verifications.registryValidations object. Note that the payloads contain more parameters; to find info about them see the decision webhook and GET /decision endpoint's documentation.
{
"FR_PHONE": {
"status": "success",
"data": null,
"validations": {
"processing": { "result": "success", "reason": null },
"is_input_valid": { "result": "success", "reason": null },
"identity_is_valid": { "result": "success", "reason": null },
"first_name_match": { "result": "success", "reason": null },
"last_name_match": { "result": "success", "reason": null },
"date_of_birth_match": { "result": "success", "reason": null },
"phone_number_match": { "result": "success", "reason": null },
"address_postcode_match": { "result": "success", "reason": null },
"address_street_match": { "result": "success", "reason": null },
"address_city_match": { "result": "success", "reason": null },
"address_state_match": { "result": "success", "reason": null }
},
"error": null,
"timestamp": null
}
}🇫🇷 France - Residential (FR_RESIDENTIAL)
Input parameters | POST /sessions example |
|---|---|
Mandatory
Optional
| |
Sample response payload
The following info can be found in decision webhook payload and GET /decision endpoint's payload, in verifications.registryValidations object. Note that the payloads contain more parameters; to find info about them see the decision webhook and GET /decision endpoint's documentation.
{
"FR_RESIDENTIAL": {
"status": "success",
"data": null,
"validations": {
"processing": { "result": "success", "reason": null },
"is_input_valid": { "result": "success", "reason": null },
"identity_is_valid": { "result": "success", "reason": null },
"first_name_match": { "result": "success", "reason": null },
"last_name_match": { "result": "success", "reason": null },
"date_of_birth_match": { "result": "success", "reason": null },
"phone_number_match": { "result": "success", "reason": null },
"address_street_match": { "result": "success", "reason": null },
"address_city_match": { "result": "success", "reason": null },
"address_postcode_match": { "result": "success", "reason": null }
},
"error": null,
"timestamp": null
}
}🇫🇷 France - Residential 2 (FR_RESIDENTIAL_2)
Input parameters | POST /sessions example |
|---|---|
Mandatory
Optional
| |
Sample response payload
The following info can be found in decision webhook payload and GET /decision endpoint's payload, in verifications.registryValidations object. Note that the payloads contain more parameters; to find info about them see the decision webhook and GET /decision endpoint's documentation.
{
"FR_RESIDENTIAL_2": {
"status": "success",
"data": null,
"validations": {
"processing": { "result": "success", "reason": null },
"is_input_valid": { "result": "success", "reason": null },
"identity_is_valid": { "result": "success", "reason": null },
"first_name_match": { "result": "success", "reason": null },
"last_name_match": { "result": "success", "reason": null },
"phone_number_match": { "result": "success", "reason": null },
"email_match": { "result": "success", "reason": null },
"address_street_match": { "result": "success", "reason": null },
"address_city_match": { "result": "success", "reason": null },
"address_postcode_match": { "result": "success", "reason": null },
"address_state_match": { "result": "success", "reason": null }
},
"error": null,
"timestamp": null
}
}🇫🇷 France - Residential 3 (FR_RESIDENTIAL_3)
Input parameters | POST /sessions example |
|---|---|
Mandatory
Optional
| |
Sample response payload
The following info can be found in decision webhook payload and GET /decision endpoint's payload, in verifications.registryValidations object. Note that the payloads contain more parameters; to find info about them see the decision webhook and GET /decision endpoint's documentation.
{
"FR_RESIDENTIAL_3": {
"status": "success",
"data": null,
"validations": {
"processing": { "result": "success", "reason": null },
"is_input_valid": { "result": "success", "reason": null },
"identity_is_valid": { "result": "success", "reason": null },
"first_name_match": { "result": "success", "reason": null },
"last_name_match": { "result": "success", "reason": null },
"date_of_birth_match": { "result": "success", "reason": null },
"address_street_match": { "result": "success", "reason": null },
"address_city_match": { "result": "success", "reason": null },
"address_postcode_match": { "result": "success", "reason": null }
},
"error": null,
"timestamp": null
}
}🇫🇷 France - Utility (FR_UTILITY)
Input parameters | POST /sessions example |
|---|---|
Mandatory
Optional
| |
Sample response payload
The following info can be found in decision webhook payload and GET /decision endpoint's payload, in verifications.registryValidations object. Note that the payloads contain more parameters; to find info about them see the decision webhook and GET /decision endpoint's documentation.
{
"FR_UTILITY": {
"status": "success",
"data": null,
"validations": {
"processing": { "result": "success", "reason": null },
"is_input_valid": { "result": "success", "reason": null },
"identity_is_valid": { "result": "success", "reason": null },
"first_name_match": { "result": "success", "reason": null },
"last_name_match": { "result": "success", "reason": null },
"date_of_birth_match": { "result": "success", "reason": null },
"address_street_match": { "result": "success", "reason": null },
"address_city_match": { "result": "success", "reason": null },
"address_postcode_match": { "result": "success", "reason": null }
},
"error": null,
"timestamp": null
}
}🇫🇷 France - Utility 2 (FR_UTILITY_2)
Input parameters | POST /sessions example |
|---|---|
Mandatory
Optional
| |
Sample response payload
The following info can be found in decision webhook payload and GET /decision endpoint's payload, in verifications.registryValidations object. Note that the payloads contain more parameters; to find info about them see the decision webhook and GET /decision endpoint's documentation.
{
"FR_UTILITY_2": {
"status": "success",
"data": null,
"validations": {
"processing": { "result": "success", "reason": null },
"is_input_valid": { "result": "success", "reason": null },
"identity_is_valid": { "result": "success", "reason": null },
"first_name_match": { "result": "success", "reason": null },
"last_name_match": { "result": "success", "reason": null },
"date_of_birth_match": { "result": "success", "reason": null },
"phone_number_match": { "result": "success", "reason": null },
"email_match": { "result": "success", "reason": null },
"address_street_match": { "result": "success", "reason": null },
"address_city_match": { "result": "success", "reason": null },
"address_postcode_match": { "result": "success", "reason": null }
},
"error": null,
"timestamp": null
}
}🇩🇪 Germany - Credit Bureau (DE_CREDIT_BUREAU)
Input parameters | POST /sessions example |
|---|---|
Mandatory
Optional
| |
Sample response payload
The following info can be found in decision webhook payload and GET /decision endpoint's payload, in verifications.registryValidations object. Note that the payloads contain more parameters; to find info about them see the decision webhook and GET /decision endpoint's documentation.
{
"DE_CREDIT_BUREAU": {
"status": "success",
"data": null,
"error": null,
"timestamp": null,
"validations": {
"processing": { "result": "success", "reason": null },
"is_input_valid": { "result": "success", "reason": null },
"consent_obtained": { "result": "success", "reason": null },
"identity_is_valid": { "result": "success", "reason": null },
"first_name_match": { "result": "success", "reason": null },
"last_name_match": { "result": "success", "reason": null },
"middle_name_match": { "result": "success", "reason": null },
"date_of_birth_match": { "result": "success", "reason": null },
"address_street_match": { "result": "success", "reason": null },
"address_city_match": { "result": "success", "reason": null },
"address_postcode_match": { "result": "success", "reason": null }
}
}
}🇩🇪 Germany - Phone (DE_PHONE)
Input parameters | POST /sessions example |
|---|---|
Mandatory
Optional
| |
Sample response payload
The following info can be found in decision webhook payload and GET /decision endpoint's payload, in verifications.registryValidations object. Note that the payloads contain more parameters; to find info about them see the decision webhook and GET /decision endpoint's documentation.
{
"DE_PHONE": {
"status": "success",
"data": null,
"error": null,
"timestamp": null,
"validations": {
"processing": { "result": "success", "reason": null },
"is_input_valid": { "result": "success", "reason": null },
"identity_is_valid": { "result": "success", "reason": null },
"first_name_match": { "result": "success", "reason": null },
"last_name_match": { "result": "success", "reason": null },
"middle_name_match": { "result": "success", "reason": null },
"phone_number_match": { "result": "success", "reason": null },
"email_match": { "result": "success", "reason": null },
"address_street_match": { "result": "success", "reason": null },
"address_city_match": { "result": "success", "reason": null },
"address_postcode_match": { "result": "success", "reason": null },
"address_state_match": { "result": "success", "reason": null }
}
}
}🇩🇪 Germany - Phone 2 (DE_PHONE_2)
Input parameters | POST /sessions example |
|---|---|
Mandatory
Optional
| |
Sample response payload
The following info can be found in decision webhook payload and GET /decision endpoint's payload, in verifications.registryValidations object. Note that the payloads contain more parameters; to find info about them see the decision webhook and GET /decision endpoint's documentation.
{
"DE_PHONE_2": {
"status": "success",
"data": null,
"error": null,
"timestamp": null,
"validations": {
"processing": { "result": "success", "reason": null },
"is_input_valid": { "result": "success", "reason": null },
"identity_is_valid": { "result": "success", "reason": null },
"first_name_match": { "result": "success", "reason": null },
"last_name_match": { "result": "success", "reason": null },
"phone_number_match": { "result": "success", "reason": null },
"address_postcode_match": { "result": "success", "reason": null },
"address_street_match": { "result": "success", "reason": null },
"address_city_match": { "result": "success", "reason": null },
"address_state_match": { "result": "success", "reason": null }
}
}
}🇩🇪 Germany - Residential (DE_RESIDENTIAL)
Input parameters | POST /sessions example |
|---|---|
Mandatory
Optional
| |
Sample response payload
The following info can be found in decision webhook payload and GET /decision endpoint's payload, in verifications.registryValidations object. Note that the payloads contain more parameters; to find info about them see the decision webhook and GET /decision endpoint's documentation.
{
"DE_RESIDENTIAL": {
"status": "success",
"data": null,
"error": null,
"timestamp": null,
"validations": {
"processing": { "result": "success", "reason": null },
"is_input_valid": { "result": "success", "reason": null },
"identity_is_valid": { "result": "success", "reason": null },
"first_name_match": { "result": "success", "reason": null },
"last_name_match": { "result": "success", "reason": null },
"middle_name_match": { "result": "success", "reason": null },
"date_of_birth_match": { "result": "success", "reason": null },
"address_street_match": { "result": "success", "reason": null },
"address_city_match": { "result": "success", "reason": null },
"address_postcode_match": { "result": "success", "reason": null }
}
}
}🇩🇪 Germany - Utility (DE_UTILITY)
Input parameters | POST /sessions example |
|---|---|
Mandatory
Optional
| |
Sample response payload
The following info can be found in decision webhook payload and GET /decision endpoint's payload, in verifications.registryValidations object. Note that the payloads contain more parameters; to find info about them see the decision webhook and GET /decision endpoint's documentation.
{
"DE_UTILITY": {
"status": "success",
"data": null,
"error": null,
"timestamp": null,
"validations": {
"processing": { "result": "success", "reason": null },
"is_input_valid": { "result": "success", "reason": null },
"identity_is_valid": { "result": "success", "reason": null },
"first_name_match": { "result": "success", "reason": null },
"last_name_match": { "result": "success", "reason": null },
"date_of_birth_match": { "result": "success", "reason": null },
"address_street_match": { "result": "success", "reason": null },
"address_city_match": { "result": "success", "reason": null },
"address_state_match": { "result": "success", "reason": null },
"address_postcode_match": { "result": "success", "reason": null }
}
}
}🇩🇪 Germany - Utility 2 (DE_UTILITY_2)
Input parameters | POST /sessions example |
|---|---|
Mandatory
Optional
| |
Sample response payload
The following info can be found in decision webhook payload and GET /decision endpoint's payload, in verifications.registryValidations object. Note that the payloads contain more parameters; to find info about them see the decision webhook and GET /decision endpoint's documentation.
{
"DE_UTILITY_2": {
"status": "success",
"data": null,
"error": null,
"timestamp": null,
"validations": {
"processing": { "result": "success", "reason": null },
"is_input_valid": { "result": "success", "reason": null },
"identity_is_valid": { "result": "success", "reason": null },
"first_name_match": { "result": "success", "reason": null },
"last_name_match": { "result": "success", "reason": null },
"date_of_birth_match": { "result": "success", "reason": null },
"address_street_match": { "result": "success", "reason": null },
"address_city_match": { "result": "success", "reason": null },
"address_postcode_match": { "result": "success", "reason": null }
}
}
}🇬🇷 Greece - Consumer (GR_CONSUMER)
Input parameters | POST /sessions example |
|---|---|
Mandatory
Optional
| |
Sample response payload
The following info can be found in decision webhook payload and GET /decision endpoint's payload, in verifications.registryValidations object. Note that the payloads contain more parameters; to find info about them see the decision webhook and GET /decision endpoint's documentation.
{
"GR_CONSUMER": {
"status": "success",
"data": null,
"validations": {
"processing": { "result": "success", "reason": null },
"is_input_valid": { "result": "success", "reason": null },
"identity_is_valid": { "result": "success", "reason": null },
"first_name_match": { "result": "success", "reason": null },
"last_name_match": { "result": "success", "reason": null },
"date_of_birth_match": { "result": "success", "reason": null },
"phone_number_match": { "result": "success", "reason": null },
"address_street_match": { "result": "success", "reason": null },
"address_city_match": { "result": "success", "reason": null },
"address_postcode_match": { "result": "success", "reason": null }
},
"error": null,
"timestamp": null
}
}🇬🇷 Greece - Credit Bureau (GR_CREDIT_BUREAU)
Input parameters | POST /sessions example |
|---|---|
Mandatory
Optional
| |
Sample response payload
The following info can be found in decision webhook payload and GET /decision endpoint's payload, in verifications.registryValidations object. Note that the payloads contain more parameters; to find info about them see the decision webhook and GET /decision endpoint's documentation.
{
"GR_CREDIT_BUREAU": {
"status": "success",
"data": null,
"validations": {
"processing": { "result": "success", "reason": null },
"is_input_valid": { "result": "success", "reason": null },
"identity_is_valid": { "result": "success", "reason": null },
"first_name_match": { "result": "success", "reason": null },
"last_name_match": { "result": "success", "reason": null },
"middle_name_match": { "result": "not_applicable", "reason": "input_not_provided" },
"date_of_birth_match": { "result": "success", "reason": null },
"id_number_match": { "result": "success", "reason": null },
"phone_number_match": { "result": "success", "reason": null },
"address_city_match": { "result": "success", "reason": null },
"address_street_match": { "result": "success", "reason": null },
"address_state_match": { "result": "success", "reason": null },
"address_postcode_match": { "result": "success", "reason": null }
},
"error": null,
"timestamp": null
}
}🇮🇪 Ireland - Citizens (IE_CITIZENS)
Input parameters | POST /sessions example |
|---|---|
Mandatory
Optional
| |
Sample response payload
The following info can be found in decision webhook payload and GET /decision endpoint's payload, in verifications.registryValidations object. Note that the payloads contain more parameters; to find info about them see the decision webhook and GET /decision endpoint's documentation.
{
"IE_CITIZENS": {
"status": "success",
"data": null,
"validations": {
"processing": { "result": "success", "reason": null },
"is_input_valid": { "result": "success", "reason": null },
"identity_is_valid": { "result": "success", "reason": null },
"first_name_match": { "result": "success", "reason": null },
"last_name_match": { "result": "success", "reason": null },
"middle_name_match": { "result": "success", "reason": null },
"gender_match": { "result": "success", "reason": null },
"phone_number_match": { "result": "success", "reason": null },
"address_street_match": { "result": "success", "reason": null },
"address_city_match": { "result": "success", "reason": null },
"address_state_match": { "result": "success", "reason": null }
},
"error": null,
"timestamp": null
}
}🇮🇪 Ireland - Credit Bureau (IE_CREDIT_BUREAU)
Input parameters | POST /sessions example |
|---|---|
Mandatory
Optional
| |
Sample response payload
The following info can be found in decision webhook payload and GET /decision endpoint's payload, in verifications.registryValidations object. Note that the payloads contain more parameters; to find info about them see the decision webhook and GET /decision endpoint's documentation.
{
"IE_CREDIT_BUREAU": {
"status": "success",
"data": null,
"validations": {
"processing": { "result": "success", "reason": null },
"is_input_valid": { "result": "success", "reason": null },
"identity_is_valid": { "result": "success", "reason": null },
"first_name_match": { "result": "success", "reason": null },
"last_name_match": { "result": "success", "reason": null },
"gender_match": { "result": "success", "reason": null },
"date_of_birth_match": { "result": "success", "reason": null },
"address_street_match": { "result": "success", "reason": null },
"address_city_match": { "result": "success", "reason": null },
"address_postcode_match": { "result": "success", "reason": null }
},
"error": null,
"timestamp": null
}
}🇮🇪 Ireland - Residential (IE_RESIDENTIAL)
Input parameters | POST /sessions example |
|---|---|
Mandatory
Optional
| |
Sample response payload
The following info can be found in decision webhook payload and GET /decision endpoint's payload, in verifications.registryValidations object. Note that the payloads contain more parameters; to find info about them see the decision webhook and GET /decision endpoint's documentation.
{
"IE_RESIDENTIAL": {
"status": "success",
"data": null,
"validations": {
"processing": { "result": "success", "reason": null },
"is_input_valid": { "result": "success", "reason": null },
"identity_is_valid": { "result": "success", "reason": null },
"first_name_match": { "result": "success", "reason": null },
"last_name_match": { "result": "success", "reason": null },
"middle_name_match": { "result": "success", "reason": null },
"gender_match": { "result": "success", "reason": null },
"date_of_birth_match": { "result": "success", "reason": null },
"address_street_match": { "result": "success", "reason": null },
"address_city_match": { "result": "success", "reason": null },
"address_state_match": { "result": "success", "reason": null }
},
"error": null,
"timestamp": null
}
}🇮🇪 Ireland - Utility (IE_UTILITY)
Input parameters | POST /sessions example |
|---|---|
Mandatory
Optional
| |
Sample response payload
The following info can be found in decision webhook payload and GET /decision endpoint's payload, in verifications.registryValidations object. Note that the payloads contain more parameters; to find info about them see the decision webhook and GET /decision endpoint's documentation.
{
"IE_UTILITY": {
"status": "success",
"data": null,
"validations": {
"processing": { "result": "success", "reason": null },
"is_input_valid": { "result": "success", "reason": null },
"identity_is_valid": { "result": "success", "reason": null },
"first_name_match": { "result": "success", "reason": null },
"last_name_match": { "result": "success", "reason": null },
"middle_name_match": { "result": "success", "reason": null },
"gender_match": { "result": "success", "reason": null },
"phone_number_match": { "result": "success", "reason": null },
"address_street_match": { "result": "success", "reason": null },
"address_city_match": { "result": "success", "reason": null },
"address_state_match": { "result": "success", "reason": null }
},
"error": null,
"timestamp": null
}
}🇮🇪 Ireland - Utility 2 (IE_UTILITY_2)
Input parameters | POST /sessions example |
|---|---|
Mandatory
Optional
| |
Sample response payload
The following info can be found in decision webhook payload and GET /decision endpoint's payload, in verifications.registryValidations object. Note that the payloads contain more parameters; to find info about them see the decision webhook and GET /decision endpoint's documentation.
{
"IE_UTILITY_2": {
"status": "success",
"data": null,
"validations": {
"processing": { "result": "success", "reason": null },
"is_input_valid": { "result": "success", "reason": null },
"identity_is_valid": { "result": "success", "reason": null },
"first_name_match": { "result": "success", "reason": null },
"last_name_match": { "result": "success", "reason": null },
"date_of_birth_match": { "result": "success", "reason": null },
"phone_number_match": { "result": "success", "reason": null },
"address_street_match": { "result": "success", "reason": null },
"address_city_match": { "result": "success", "reason": null },
"address_state_match": { "result": "success", "reason": null },
"address_postcode_match": { "result": "success", "reason": null }
},
"error": null,
"timestamp": null
}
}🇮🇪 Ireland - Voter Registration (IE_VOTER_REGISTRATION)
Input parameters | POST /sessions example |
|---|---|
Mandatory
Optional
| |
Sample response payload
The following info can be found in decision webhook payload and GET /decision endpoint's payload, in verifications.registryValidations object. Note that the payloads contain more parameters; to find info about them see the decision webhook and GET /decision endpoint's documentation.
{
"IE_VOTER_REGISTRATION": {
"status": "success",
"data": null,
"validations": {
"processing": { "result": "success", "reason": null },
"is_input_valid": { "result": "success", "reason": null },
"identity_is_valid": { "result": "success", "reason": null },
"first_name_match": { "result": "success", "reason": null },
"last_name_match": { "result": "success", "reason": null },
"middle_name_match": { "result": "success", "reason": null },
"gender_match": { "result": "success", "reason": null },
"id_number_match": { "result": "success", "reason": null },
"address_street_match": { "result": "success", "reason": null },
"address_city_match": { "result": "success", "reason": null },
"address_state_match": { "result": "success", "reason": null }
},
"error": null,
"timestamp": null
}
}🇮🇹 Italy - Consumer (IT_CONSUMER)
Input parameters | POST /sessions example |
|---|---|
Mandatory
Optional
| |
Sample response payload
The following info can be found in decision webhook payload and GET /decision endpoint's payload, in verifications.registryValidations object. Note that the payloads contain more parameters; to find info about them see the decision webhook and GET /decision endpoint's documentation.
{
"IT_CONSUMER": {
"status": "success",
"data": null,
"validations": {
"processing": { "result": "success", "reason": null },
"is_input_valid": { "result": "success", "reason": null },
"identity_is_valid": { "result": "success", "reason": null },
"first_name_match": { "result": "success", "reason": null },
"last_name_match": { "result": "success", "reason": null },
"date_of_birth_match": { "result": "success", "reason": null },
"phone_number_match": { "result": "success", "reason": null },
"email_match": { "result": "success", "reason": null },
"address_street_match": { "result": "success", "reason": null },
"address_city_match": { "result": "success", "reason": null },
"address_state_match": { "result": "success", "reason": null },
"address_postcode_match": { "result": "success", "reason": null }
},
"error": null,
"timestamp": null
}
}🇮🇹 Italy - Credit Bureau (IT_CREDIT_BUREAU)
Input parameters | POST /sessions example |
|---|---|
Mandatory
Optional
| |
Sample response payload
The following info can be found in decision webhook payload and GET /decision endpoint's payload, in verifications.registryValidations object. Note that the payloads contain more parameters; to find info about them see the decision webhook and GET /decision endpoint's documentation.
{
"IT_CREDIT_BUREAU": {
"status": "success",
"data": null,
"validations": {
"processing": { "result": "success", "reason": null },
"is_input_valid": { "result": "success", "reason": null },
"identity_is_valid": { "result": "success", "reason": null },
"first_name_match": { "result": "success", "reason": null },
"last_name_match": { "result": "success", "reason": null },
"date_of_birth_match": { "result": "success", "reason": null },
"gender_match": { "result": "success", "reason": null },
"id_number_match": { "result": "success", "reason": null },
"address_street_match": { "result": "success", "reason": null },
"address_city_match": { "result": "success", "reason": null },
"address_state_match": { "result": "success", "reason": null },
"address_postcode_match": { "result": "success", "reason": null }
},
"error": null,
"timestamp": null
}
}🇮🇹 Italy - Credit Bureau 2 (IT_CREDIT_BUREAU_2)
Input parameters | POST /sessions example |
|---|---|
Mandatory
Optional
| |
Sample response payload
The following info can be found in decision webhook payload and GET /decision endpoint's payload, in verifications.registryValidations object. Note that the payloads contain more parameters; to find info about them see the decision webhook and GET /decision endpoint's documentation.
{
"IT_CREDIT_BUREAU_2": {
"status": "success",
"data": null,
"validations": {
"processing": { "result": "success", "reason": null },
"is_input_valid": { "result": "success", "reason": null },
"identity_is_valid": { "result": "success", "reason": null },
"first_name_match": { "result": "success", "reason": null },
"last_name_match": { "result": "success", "reason": null },
"date_of_birth_match": { "result": "success", "reason": null },
"phone_number_match": { "result": "success", "reason": null },
"address_street_match": { "result": "success", "reason": null },
"address_postcode_match": { "result": "success", "reason": null },
"address_city_match": { "result": "success", "reason": null },
"address_state_match": { "result": "success", "reason": null }
},
"error": null,
"timestamp": null
}
}🇮🇹 Italy - Residential (IT_RESIDENTIAL)
Input parameters | POST /sessions example |
|---|---|
Mandatory
Optional
| |
Sample response payload
The following info can be found in decision webhook payload and GET /decision endpoint's payload, in verifications.registryValidations object. Note that the payloads contain more parameters; to find info about them see the decision webhook and GET /decision endpoint's documentation.
{
"IT_RESIDENTIAL": {
"status": "success",
"data": null,
"validations": {
"processing": { "result": "success", "reason": null },
"is_input_valid": { "result": "success", "reason": null },
"identity_is_valid": { "result": "success", "reason": null },
"first_name_match": { "result": "success", "reason": null },
"last_name_match": { "result": "success", "reason": null },
"date_of_birth_match": { "result": "success", "reason": null },
"address_street_match": { "result": "success", "reason": null },
"address_city_match": { "result": "success", "reason": null },
"address_postcode_match": { "result": "success", "reason": null }
},
"error": null,
"timestamp": null
}
}🇰🇪 Kenya - National ID (KE_NATIONAL_ID)
Input parameters | POST /sessions example |
|---|---|
Mandatory
Optional
| |
Sample response payload
The following info can be found in decision webhook payload and GET /decision endpoint's payload, in verifications.registryValidations object. Note that the payloads contain more parameters; to find info about them see the decision webhook and GET /decision endpoint's documentation.
{
"KE_NATIONAL_ID": {
"status": "success",
"data": null,
"validations": {
"processing": { "result": "success", "reason": null },
"is_input_valid": { "result": "success", "reason": null },
"identity_is_valid": { "result": "success", "reason": null },
"first_name_match": { "result": "success", "reason": null },
"last_name_match": { "result": "success", "reason": null },
"middle_name_match": { "result": "not_applicable", "reason": "input_not_provided" },
"date_of_birth_match": { "result": "success", "reason": null },
"gender_match": { "result": "success", "reason": null },
"id_number_match": { "result": "success", "reason": null }
},
"error": null,
"timestamp": null
}
}🇲🇦 Morocco - Residential (MA_RESIDENTIAL)
Input parameters | POST /sessions example |
|---|---|
Mandatory
Optional
| |
Sample response payload
The following info can be found in decision webhook payload and GET /decision endpoint's payload, in verifications.registryValidations object. Note that the payloads contain more parameters; to find info about them see the decision webhook and GET /decision endpoint's documentation.
{
"MA_RESIDENTIAL": {
"status": "success",
"data": null,
"validations": {
"processing": { "result": "success", "reason": null },
"is_input_valid": { "result": "success", "reason": null },
"identity_is_valid": { "result": "success", "reason": null },
"first_name_match": { "result": "success", "reason": null },
"last_name_match": { "result": "success", "reason": null },
"date_of_birth_match": { "result": "success", "reason": null },
"gender_match": { "result": "success", "reason": null },
"phone_number_match": { "result": "success", "reason": null },
"email_match": { "result": "success", "reason": null },
"address_city_match": { "result": "success", "reason": null },
"address_postcode_match": { "result": "success", "reason": null },
"address_street_match": { "result": "success", "reason": null },
"address_state_match": { "result": "success", "reason": null }
},
"error": null,
"timestamp": null
}
}🇳🇱 Netherlands - Consumer (NL_CONSUMER)
Input parameters | POST /sessions example |
|---|---|
Mandatory
Optional
| |
Sample response payload
The following info can be found in decision webhook payload and GET /decision endpoint's payload, in verifications.registryValidations object. Note that the payloads contain more parameters; to find info about them see the decision webhook and GET /decision endpoint's documentation.
{
"NL_CONSUMER": {
"status": "success",
"data": null,
"validations": {
"processing": { "result": "success", "reason": null },
"is_input_valid": { "result": "success", "reason": null },
"identity_is_valid": { "result": "success", "reason": null },
"first_name_match": { "result": "success", "reason": null },
"last_name_match": { "result": "success", "reason": null },
"date_of_birth_match": { "result": "success", "reason": null },
"phone_number_match": { "result": "success", "reason": null },
"email_match": { "result": "success", "reason": null },
"address_street_match": { "result": "success", "reason": null },
"address_city_match": { "result": "success", "reason": null },
"address_state_match": { "result": "success", "reason": null },
"address_postcode_match": { "result": "success", "reason": null }
},
"error": null,
"timestamp": null
}
}🇳🇱 Netherlands - Residential (NL_RESIDENTIAL)
Input parameters | POST /sessions example |
|---|---|
Mandatory
Optional
| |
Sample response payload
The following info can be found in decision webhook payload and GET /decision endpoint's payload, in verifications.registryValidations object. Note that the payloads contain more parameters; to find info about them see the decision webhook and GET /decision endpoint's documentation.
{
"NL_RESIDENTIAL": {
"status": "success",
"data": null,
"validations": {
"processing": { "result": "success", "reason": null },
"is_input_valid": { "result": "success", "reason": null },
"identity_is_valid": { "result": "success", "reason": null },
"first_name_match": { "result": "success", "reason": null },
"last_name_match": { "result": "success", "reason": null },
"middle_name_match": { "result": "not_applicable", "reason": "input_not_provided" },
"gender_match": { "result": "success", "reason": null },
"date_of_birth_match": { "result": "success", "reason": null },
"phone_number_match": { "result": "success", "reason": null },
"land_line_phone_number_match": { "result": "success", "reason": null },
"email_match": { "result": "success", "reason": null },
"address_street_match": { "result": "success", "reason": null },
"address_postcode_match": { "result": "success", "reason": null },
"address_neighbourhood_match": { "result": "success", "reason": null }
},
"error": null,
"timestamp": null
}
}🇳🇱 Netherlands - Utility (NL_UTILITY)
Input parameters | POST /sessions example |
|---|---|
Mandatory
Optional
| |
Sample response payload
The following info can be found in decision webhook payload and GET /decision endpoint's payload, in verifications.registryValidations object. Note that the payloads contain more parameters; to find info about them see the decision webhook and GET /decision endpoint's documentation.
{
"NL_UTILITY": {
"status": "success",
"data": null,
"validations": {
"processing": { "result": "success", "reason": null },
"is_input_valid": { "result": "success", "reason": null },
"identity_is_valid": { "result": "success", "reason": null },
"first_name_match": { "result": "success", "reason": null },
"last_name_match": { "result": "success", "reason": null },
"date_of_birth_match": { "result": "success", "reason": null },
"address_street_match": { "result": "success", "reason": null },
"address_neighbourhood_match": { "result": "success", "reason": null },
"address_postcode_match": { "result": "success", "reason": null }
},
"error": null,
"timestamp": null
}
}🇳🇬 Nigeria - Bank Verification Number (NG_BANK_VERIFICATION)
Input parameters | POST /sessions example |
|---|---|
Mandatory
Optional
| |
Sample response payload
The following info can be found in decision webhook payload and GET /decision endpoint's payload, in verifications.registryValidations object. Note that the payloads contain more parameters; to find info about them see the decision webhook and GET /decision endpoint's documentation.
{
"NG_BANK_VERIFICATION": {
"status": "success",
"data": null,
"validations": {
"processing": { "result": "success", "reason": null },
"is_input_valid": { "result": "success", "reason": null },
"identity_is_valid": { "result": "success", "reason": null },
"first_name_match": { "result": "success", "reason": null },
"last_name_match": { "result": "success", "reason": null },
"date_of_birth_match": { "result": "success", "reason": null },
"document_reference_number_match": { "result": "success", "reason": null }
},
"error": null,
"timestamp": null
}
}🇳🇬 Nigeria - National ID (NG_NATIONAL_ID)
Input parameters | POST /sessions example |
|---|---|
Mandatory
Optional
| |
Sample response payload
The following info can be found in decision webhook payload and GET /decision endpoint's payload, in verifications.registryValidations object. Note that the payloads contain more parameters; to find info about them see the decision webhook and GET /decision endpoint's documentation.
{
"NG_NATIONAL_ID": {
"status": "success",
"data": null,
"validations": {
"processing": { "result": "success", "reason": null },
"is_input_valid": { "result": "success", "reason": null },
"identity_is_valid": { "result": "success", "reason": null },
"first_name_match": { "result": "success", "reason": null },
"last_name_match": { "result": "success", "reason": null },
"date_of_birth_match": { "result": "success", "reason": null },
"id_number_match": { "result": "success", "reason": null },
"address_street_match": { "result": "success", "reason": null },
"address_neighbourhood_match": { "result": "success", "reason": null },
"address_state_match": { "result": "success", "reason": null }
},
"error": null,
"timestamp": null
}
}🇳🇴 Norway - Consumer (NO_CONSUMER)
Input parameters | POST /sessions example |
|---|---|
Mandatory
Optional
| |
Sample response payload
The following info can be found in decision webhook payload and GET /decision endpoint's payload, in verifications.registryValidations object. Note that the payloads contain more parameters; to find info about them see the decision webhook and GET /decision endpoint's documentation.
{
"NO_CONSUMER": {
"status": "success",
"data": null,
"validations": {
"processing": { "result": "success", "reason": null },
"is_input_valid": { "result": "success", "reason": null },
"identity_is_valid": { "result": "success", "reason": null },
"first_name_match": { "result": "success", "reason": null },
"last_name_match": { "result": "success", "reason": null },
"date_of_birth_match": { "result": "success", "reason": null },
"phone_number_match": { "result": "success", "reason": null },
"email_match": { "result": "success", "reason": null },
"address_street_match": { "result": "success", "reason": null },
"address_neighbourhood_match": { "result": "success", "reason": null },
"address_state_match": { "result": "success", "reason": null },
"address_postcode_match": { "result": "success", "reason": null }
},
"error": null,
"timestamp": null
}
}🇳🇴 Norway - Residential (NO_RESIDENTIAL)
Input parameters | POST /sessions example |
|---|---|
Mandatory
Optional
| |
Sample response payload
The following info can be found in decision webhook payload and GET /decision endpoint's payload, in verifications.registryValidations object. Note that the payloads contain more parameters; to find info about them see the decision webhook and GET /decision endpoint's documentation.
{
"NO_RESIDENTIAL": {
"status": "success",
"data": null,
"validations": {
"processing": { "result": "success", "reason": null },
"is_input_valid": { "result": "success", "reason": null },
"identity_is_valid": { "result": "success", "reason": null },
"first_name_match": { "result": "success", "reason": null },
"last_name_match": { "result": "success", "reason": null },
"full_name_match": { "result": "success", "reason": null },
"date_of_birth_match": { "result": "success", "reason": null },
"id_number_match": { "result": "success", "reason": null },
"address_street_match": { "result": "success", "reason": null },
"address_neighbourhood_match": { "result": "success", "reason": null },
"address_state_match": { "result": "success", "reason": null },
"address_postcode_match": { "result": "success", "reason": null }
},
"error": null,
"timestamp": null
}
}🇳🇴 Norway - Utility (NO_UTILITY)
Input parameters | POST /sessions example |
|---|---|
Mandatory
Optional
| |
Sample response payload
The following info can be found in decision webhook payload and GET /decision endpoint's payload, in verifications.registryValidations object. Note that the payloads contain more parameters; to find info about them see the decision webhook and GET /decision endpoint's documentation.
{
"NO_UTILITY": {
"status": "success",
"data": null,
"validations": {
"processing": { "result": "success", "reason": null },
"is_input_valid": { "result": "success", "reason": null },
"identity_is_valid": { "result": "success", "reason": null },
"first_name_match": { "result": "success", "reason": null },
"last_name_match": { "result": "success", "reason": null },
"date_of_birth_match": { "result": "success", "reason": null },
"phone_number_match": { "result": "success", "reason": null },
"email_match": { "result": "success", "reason": null },
"address_street_match": { "result": "success", "reason": null },
"address_postcode_match": { "result": "success", "reason": null },
"address_neighbourhood_match": { "result": "success", "reason": null }
},
"error": null,
"timestamp": null
}
}🇵🇱 Poland - Consumer (PL_CONSUMER)
Input parameters | POST /sessions example |
|---|---|
Mandatory
Optional
| |
Sample response payload
The following info can be found in decision webhook payload and GET /decision endpoint's payload, in verifications.registryValidations object. Note that the payloads contain more parameters; to find info about them see the decision webhook and GET /decision endpoint's documentation.
{
"PL_CONSUMER": {
"status": "success",
"data": null,
"validations": {
"processing": { "result": "success", "reason": null },
"is_input_valid": { "result": "success", "reason": null },
"identity_is_valid": { "result": "success", "reason": null },
"first_name_match": { "result": "success", "reason": null },
"last_name_match": { "result": "success", "reason": null },
"date_of_birth_match": { "result": "success", "reason": null },
"phone_number_match": { "result": "success", "reason": null },
"email_match": { "result": "success", "reason": null },
"address_street_match": { "result": "success", "reason": null },
"address_neighbourhood_match": { "result": "success", "reason": null },
"address_state_match": { "result": "success", "reason": null },
"address_postcode_match": { "result": "success", "reason": null }
},
"error": null,
"timestamp": null
}
}🇵🇱 Poland - Credit Bureau (PL_CREDIT_BUREAU)
Input parameters | POST /sessions example |
|---|---|
Mandatory
Optional
| |
Sample response payload
The following info can be found in decision webhook payload and GET /decision endpoint's payload, in verifications.registryValidations object. Note that the payloads contain more parameters; to find info about them see the decision webhook and GET /decision endpoint's documentation.
{
"PL_CREDIT_BUREAU": {
"status": "success",
"data": null,
"validations": {
"processing": { "result": "success", "reason": null },
"is_input_valid": { "result": "success", "reason": null },
"consent_obtained": { "result": "success", "reason": null },
"identity_is_valid": { "result": "success", "reason": null },
"first_name_match": { "result": "success", "reason": null },
"last_name_match": { "result": "success", "reason": null },
"date_of_birth_match": { "result": "success", "reason": null },
"address_street_match": { "result": "success", "reason": null },
"address_city_match": { "result": "success", "reason": null },
"address_postcode_match": { "result": "success", "reason": null }
},
"error": null,
"timestamp": null
}
}🇵🇹 Portugal - Residential (PT_RESIDENTIAL)
Input parameters | POST /sessions example |
|---|---|
Mandatory
Optional
| |
Sample response payload
The following info can be found in decision webhook payload and GET /decision endpoint's payload, in verifications.registryValidations object. Note that the payloads contain more parameters; to find info about them see the decision webhook and GET /decision endpoint's documentation.
{
"PT_RESIDENTIAL": {
"status": "success",
"data": null,
"validations": {
"processing": { "result": "success", "reason": null },
"is_input_valid": { "result": "success", "reason": null },
"identity_is_valid": { "result": "success", "reason": null },
"first_name_match": { "result": "success", "reason": null },
"last_name_match": { "result": "success", "reason": null },
"date_of_birth_match": { "result": "success", "reason": null },
"address_street_match": { "result": "success", "reason": null },
"address_city_match": { "result": "success", "reason": null },
"address_postcode_match": { "result": "success", "reason": null }
},
"error": null,
"timestamp": null
}
}🇸🇰 Slovakia - Residential (SK_RESIDENTIAL)
Input parameters | POST /sessions example |
|---|---|
Mandatory
Optional
| |
Sample response payload
The following info can be found in decision webhook payload and GET /decision endpoint's payload, in verifications.registryValidations object. Note that the payloads contain more parameters; to find info about them see the decision webhook and GET /decision endpoint's documentation.
{
"SK_RESIDENTIAL": {
"status": "success",
"data": null,
"validations": {
"processing": { "result": "success", "reason": null },
"is_input_valid": { "result": "success", "reason": null },
"identity_is_valid": { "result": "success", "reason": null },
"first_name_match": { "result": "success", "reason": null },
"last_name_match": { "result": "success", "reason": null },
"address_street_match": { "result": "success", "reason": null },
"address_city_match": { "result": "success", "reason": null },
"address_neighbourhood_match": { "result": "success", "reason": null }
},
"error": null,
"timestamp": null
}
}🇿🇦 South Africa - National ID (ZA_NATIONAL_ID)
Input parameters | POST /sessions example |
|---|---|
Mandatory
Optional
| |
Sample response payload
The following info can be found in decision webhook payload and GET /decision endpoint's payload, in verifications.registryValidations object. Note that the payloads contain more parameters; to find info about them see the decision webhook and GET /decision endpoint's documentation.
{
"ZA_NATIONAL_ID": {
"status": "success",
"data": null,
"validations": {
"processing": { "result": "success", "reason": null },
"is_input_valid": { "result": "success", "reason": null },
"identity_is_valid": { "result": "success", "reason": null },
"first_name_match": { "result": "success", "reason": null },
"last_name_match": { "result": "success", "reason": null },
"middle_name_match": { "result": "not_applicable", "reason": "input_not_provided" },
"date_of_birth_match": { "result": "success", "reason": null },
"id_number_match": { "result": "success", "reason": null }
},
"error": null,
"timestamp": null
}
}🇪🇸 Spain - Consumer (ES_CONSUMER)
Input parameters | POST /sessions example |
|---|---|
Mandatory
Optional
| |
Sample response payload
The following info can be found in decision webhook payload and GET /decision endpoint's payload, in verifications.registryValidations object. Note that the payloads contain more parameters; to find info about them see the decision webhook and GET /decision endpoint's documentation.
{
"ES_CONSUMER": {
"status": "success",
"data": null,
"validations": {
"processing": { "result": "success", "reason": null },
"is_input_valid": { "result": "success", "reason": null },
"identity_is_valid": { "result": "success", "reason": null },
"first_name_match": { "result": "success", "reason": null },
"last_name_match": { "result": "success", "reason": null },
"date_of_birth_match": { "result": "success", "reason": null },
"phone_number_match": { "result": "success", "reason": null },
"email_match": { "result": "success", "reason": null },
"address_street_match": { "result": "success", "reason": null },
"address_city_match": { "result": "success", "reason": null },
"address_state_match": { "result": "success", "reason": null },
"address_postcode_match": { "result": "success", "reason": null }
},
"error": null,
"timestamp": null
}
}🇪🇸 Spain - Consumer 2 (ES_CONSUMER_2)
Input parameters | POST /sessions example |
|---|---|
Mandatory
Optional
| |
Sample response payload
The following info can be found in decision webhook payload and GET /decision endpoint's payload, in verifications.registryValidations object. Note that the payloads contain more parameters; to find info about them see the decision webhook and GET /decision endpoint's documentation.
{
"ES_CONSUMER_2": {
"status": "success",
"data": null,
"validations": {
"processing": { "result": "success", "reason": null },
"is_input_valid": { "result": "success", "reason": null },
"identity_is_valid": { "result": "success", "reason": null },
"first_name_match": { "result": "success", "reason": null },
"last_name_match": { "result": "success", "reason": null },
"date_of_birth_match": { "result": "success", "reason": null },
"phone_number_match": { "result": "success", "reason": null },
"email_match": { "result": "success", "reason": null },
"address_street_match": { "result": "success", "reason": null },
"address_postcode_match": { "result": "success", "reason": null },
"address_city_match": { "result": "success", "reason": null }
},
"error": null,
"timestamp": null
}
}🇪🇸 Spain - National ID (ES_NATIONAL_ID)
Input parameters | POST /sessions example |
|---|---|
Mandatory
Optional
| |
Sample response payload
The following info can be found in decision webhook payload and GET /decision endpoint's payload, in verifications.registryValidations object. Note that the payloads contain more parameters; to find info about them see the decision webhook and GET /decision endpoint's documentation.
{
"ES_NATIONAL_ID": {
"status": "success",
"data": null,
"validations": {
"processing": { "result": "success", "reason": null },
"is_input_valid": { "result": "success", "reason": null },
"consent_obtained": { "result": "success", "reason": null },
"identity_is_valid": { "result": "success", "reason": null },
"first_name_match": { "result": "success", "reason": null },
"last_name_match": { "result": "success", "reason": null },
"date_of_birth_match": { "result": "success", "reason": null },
"id_number_match": { "result": "success", "reason": null },
"phone_number_match": { "result": "success", "reason": null },
"address_street_match": { "result": "success", "reason": null },
"address_city_match": { "result": "success", "reason": null },
"address_postcode_match": { "result": "success", "reason": null },
"address_state_match": { "result": "success", "reason": null }
},
"error": null,
"timestamp": null
}
}🇪🇸 Spain - Phone (ES_PHONE)
Input parameters | POST /sessions example |
|---|---|
Mandatory
Optional
| |
Sample response payload
The following info can be found in decision webhook payload and GET /decision endpoint's payload, in verifications.registryValidations object. Note that the payloads contain more parameters; to find info about them see the decision webhook and GET /decision endpoint's documentation.
{
"ES_PHONE": {
"status": "success",
"data": null,
"validations": {
"processing": { "result": "success", "reason": null },
"is_input_valid": { "result": "success", "reason": null },
"identity_is_valid": { "result": "success", "reason": null },
"first_name_match": { "result": "success", "reason": null },
"last_name_match": { "result": "success", "reason": null },
"phone_number_match": { "result": "success", "reason": null },
"address_street_match": { "result": "success", "reason": null },
"address_city_match": { "result": "success", "reason": null },
"address_postcode_match": { "result": "success", "reason": null },
"address_state_match": { "result": "success", "reason": null }
},
"error": null,
"timestamp": null
}
}🇪🇸 Spain - Phone 2 (ES_PHONE_2)
Input parameters | POST /sessions example |
|---|---|
Mandatory
Optional
| |
Sample response payload
The following info can be found in decision webhook payload and GET /decision endpoint's payload, in verifications.registryValidations object. Note that the payloads contain more parameters; to find info about them see the decision webhook and GET /decision endpoint's documentation.
{
"ES_PHONE_2": {
"status": "success",
"data": null,
"validations": {
"processing": { "result": "success", "reason": null },
"is_input_valid": { "result": "success", "reason": null },
"identity_is_valid": { "result": "success", "reason": null },
"first_name_match": { "result": "success", "reason": null },
"last_name_match": { "result": "success", "reason": null },
"date_of_birth_match": { "result": "success", "reason": null },
"phone_number_match": { "result": "success", "reason": null },
"address_street_match": { "result": "success", "reason": null },
"address_city_match": { "result": "success", "reason": null },
"address_state_match": { "result": "success", "reason": null },
"address_postcode_match": { "result": "success", "reason": null }
},
"error": null,
"timestamp": null
}
}🇪🇸 Spain - Residential (ES_RESIDENTIAL)
Input parameters | POST /sessions example |
|---|---|
Mandatory
Optional
| |
Sample response payload
The following info can be found in decision webhook payload and GET /decision endpoint's payload, in verifications.registryValidations object. Note that the payloads contain more parameters; to find info about them see the decision webhook and GET /decision endpoint's documentation.
{
"ES_RESIDENTIAL": {
"status": "success",
"data": null,
"validations": {
"processing": { "result": "success", "reason": null },
"is_input_valid": { "result": "success", "reason": null },
"identity_is_valid": { "result": "success", "reason": null },
"first_name_match": { "result": "success", "reason": null },
"last_name_match": { "result": "success", "reason": null },
"date_of_birth_match": { "result": "success", "reason": null },
"address_street_match": { "result": "success", "reason": null },
"address_city_match": { "result": "success", "reason": null },
"address_postcode_match": { "result": "success", "reason": null }
},
"error": null,
"timestamp": null
}
}🇪🇸 Spain - Utility (ES_UTILITY)
Input parameters | POST /sessions example |
|---|---|
Mandatory
Optional
| |
Sample response payload
The following info can be found in decision webhook payload and GET /decision endpoint's payload, in verifications.registryValidations object. Note that the payloads contain more parameters; to find info about them see the decision webhook and GET /decision endpoint's documentation.
{
"ES_UTILITY": {
"status": "success",
"data": null,
"validations": {
"processing": { "result": "success", "reason": null },
"is_input_valid": { "result": "success", "reason": null },
"identity_is_valid": { "result": "success", "reason": null },
"first_name_match": { "result": "success", "reason": null },
"last_name_match": { "result": "success", "reason": null },
"phone_number_match": { "result": "success", "reason": null },
"land_line_phone_number_match": { "result": "success", "reason": null },
"id_number_match": { "result": "success", "reason": null },
"address_street_match": { "result": "success", "reason": null },
"address_city_match": { "result": "success", "reason": null },
"address_state_match": { "result": "success", "reason": null },
"address_postcode_match": { "result": "success", "reason": null }
},
"error": null,
"timestamp": null
}
}🇸🇪 Sweden - Consumer (SE_CONSUMER)
Input parameters | POST /sessions example |
|---|---|
Mandatory
Optional
| |
Sample response payload
The following info can be found in decision webhook payload and GET /decision endpoint's payload, in verifications.registryValidations object. Note that the payloads contain more parameters; to find info about them see the decision webhook and GET /decision endpoint's documentation.
{
"SE_CONSUMER": {
"status": "success",
"data": null,
"validations": {
"processing": { "result": "success", "reason": null },
"is_input_valid": { "result": "success", "reason": null },
"identity_is_valid": { "result": "success", "reason": null },
"first_name_match": { "result": "success", "reason": null },
"last_name_match": { "result": "success", "reason": null },
"date_of_birth_match": { "result": "success", "reason": null },
"phone_number_match": { "result": "success", "reason": null },
"email_match": { "result": "success", "reason": null },
"address_street_match": { "result": "success", "reason": null },
"address_city_match": { "result": "success", "reason": null },
"address_state_match": { "result": "success", "reason": null },
"address_postcode_match": { "result": "success", "reason": null }
},
"error": null,
"timestamp": null
}
}🇸🇪 Sweden - National ID (SE_NATIONAL_ID)
Input parameters | POST /sessions example |
|---|---|
Mandatory
Optional
| |
Sample response payload
The following info can be found in decision webhook payload and GET /decision endpoint's payload, in verifications.registryValidations object. Note that the payloads contain more parameters; to find info about them see the decision webhook and GET /decision endpoint's documentation.
{
"SE_NATIONAL_ID": {
"status": "success",
"data": null,
"validations": {
"processing": { "result": "success", "reason": null },
"is_input_valid": { "result": "success", "reason": null },
"identity_is_valid": { "result": "success", "reason": null },
"first_name_match": { "result": "success", "reason": null },
"last_name_match": { "result": "success", "reason": null },
"middle_name_match": { "result": "not_applicable", "reason": "input_not_provided" },
"date_of_birth_match": { "result": "success", "reason": null },
"id_number_match": { "result": "success", "reason": null },
"address_street_match": { "result": "success", "reason": null },
"address_city_match": { "result": "success", "reason": null },
"address_state_match": { "result": "success", "reason": null },
"address_postcode_match": { "result": "success", "reason": null }
},
"error": null,
"timestamp": null
}
}🇸🇪 Sweden - Phone (SE_PHONE)
Input parameters | POST /sessions example |
|---|---|
Mandatory
Optional
| |
Sample response payload
The following info can be found in decision webhook payload and GET /decision endpoint's payload, in verifications.registryValidations object. Note that the payloads contain more parameters; to find info about them see the decision webhook and GET /decision endpoint's documentation.
{
"SE_PHONE": {
"status": "success",
"data": null,
"validations": {
"processing": { "result": "success", "reason": null },
"is_input_valid": { "result": "success", "reason": null },
"identity_is_valid": { "result": "success", "reason": null },
"first_name_match": { "result": "success", "reason": null },
"last_name_match": { "result": "success", "reason": null },
"middle_name_match": { "result": "not_applicable", "reason": "input_not_provided" },
"date_of_birth_match": { "result": "success", "reason": null },
"id_number_match": { "result": "success", "reason": null },
"phone_number_match": { "result": "success", "reason": null },
"address_street_match": { "result": "success", "reason": null },
"address_city_match": { "result": "success", "reason": null },
"address_postcode_match": { "result": "success", "reason": null }
},
"error": null,
"timestamp": null
}
}🇨🇭 Switzerland - Consumer (CH_CONSUMER)
Input parameters | POST /sessions example |
|---|---|
Mandatory
Optional
| |
Sample response payload
The following info can be found in decision webhook payload and GET /decision endpoint's payload, in verifications.registryValidations object. Note that the payloads contain more parameters; to find info about them see the decision webhook and GET /decision endpoint's documentation.
{
"CH_CONSUMER": {
"status": "success",
"data": null,
"error": null,
"timestamp": null,
"validations": {
"processing": { "result": "success", "reason": null },
"is_input_valid": { "result": "success", "reason": null },
"identity_is_valid": { "result": "success", "reason": null },
"first_name_match": { "result": "success", "reason": null },
"last_name_match": { "result": "success", "reason": null },
"date_of_birth_match": { "result": "success", "reason": null },
"phone_number_match": { "result": "success", "reason": null },
"email_match": { "result": "success", "reason": null },
"address_street_match": { "result": "success", "reason": null },
"address_city_match": { "result": "success", "reason": null },
"address_state_match": { "result": "success", "reason": null },
"address_postcode_match": { "result": "success", "reason": null }
}
}
}🇨🇭 Switzerland - Credit Bureau (CH_CREDIT_BUREAU)
Input parameters | POST /sessions example |
|---|---|
Mandatory
Optional
| |
Sample response payload
The following info can be found in decision webhook payload and GET /decision endpoint's payload, in verifications.registryValidations object. Note that the payloads contain more parameters; to find info about them see the decision webhook and GET /decision endpoint's documentation.
{
"CH_CREDIT_BUREAU": {
"status": "success",
"data": null,
"error": null,
"timestamp": null,
"validations": {
"processing": { "result": "success", "reason": null },
"is_input_valid": { "result": "success", "reason": null },
"consent_obtained": { "result": "success", "reason": null },
"identity_is_valid": { "result": "success", "reason": null },
"first_name_match": { "result": "success", "reason": null },
"last_name_match": { "result": "success", "reason": null },
"date_of_birth_match": { "result": "success", "reason": null },
"gender_match": { "result": "success", "reason": null },
"address_street_match": { "result": "success", "reason": null },
"address_city_match": { "result": "success", "reason": null },
"address_postcode_match": { "result": "success", "reason": null },
"address_neighbourhood_match": { "result": "success", "reason": null }
}
}
}🇬🇧 United Kingdom Citizens (GB_CITIZENS)
Input parameters | POST /sessions example |
|---|---|
Mandatory
| With parsed address fields With |
To send address info, you can use either parsed
address.street+address.city+address.postcodeparameters or the full address viaaddress.fullAddress. Do not send both.
Sample response payload
The following info can be found in decision webhook payload and GET /decision endpoint's payload, in verifications.registryValidations object.
{
"GB_CITIZENS": {
"status": "success",
"data": {
"firstName": "Oliver",
"lastName": "Thornton"
},
"validations": {
"processing": { "result": "success", "reason": null },
"is_input_valid": { "result": "success", "reason": null },
"identity_is_valid": { "result": "success", "reason": null },
"first_name_match": { "result": "success", "reason": null },
"last_name_match": { "result": "success", "reason": null },
"date_of_birth_match": { "result": "success", "reason": null },
"address_full_address_match": { "result": "success", "reason": null }
},
"error": null,
"timestamp": null
}
}🇬🇧 United Kingdom Consumer (GB_CONSUMER)
Input parameters | POST /sessions example |
|---|---|
Mandatory
Optional
| With all optional data |
Sample response payload
The following info can be found in decision webhook payload and GET /decision endpoint's payload, in verifications.registryValidations object.
{
"GB_CONSUMER": {
"status": "success",
"data": {
"address1": "25 Baker Street",
"city": "London",
"postCode": "W1U 8EW",
"firstName": "Emma",
"lastName": "Clark"
},
"validations": {
"processing": {"result": "success", "reason": null},
"is_input_valid": {"result": "success", "reason": null},
"identity_is_valid": {"result": "success", "reason": null},
"first_name_match": {"result": "success", "reason": null},
"last_name_match": {"result": "success", "reason": null},
"date_of_birth_match": {"result": "success", "reason": null}
},
"error": null,
"timestamp": null
}
}🇬🇧 United Kingdom Credit Bureau (GB_CREDIT_BUREAU)
Input parameters | POST /sessions example |
|---|---|
Mandatory
| With parsed address fields With |
To send address info, you can use either parsed
address.street+address.city+address.postcodeparameters or the full address viaaddress.fullAddress. Do not send both.
Sample response payload
The following info can be found in decision webhook payload and GET /decision endpoint's payload, in verifications.registryValidations object.
{
"GB_CREDIT_BUREAU": {
"status": "success",
"data": {
"address1": "45 Threadneedle Street",
"city": "London",
"postCode": "EC2R 8AH",
"firstName": "Charlotte",
"lastName": "Pemberton",
"middleName": "Anne"
},
"validations": {
"processing": { "result": "success", "reason": null },
"is_input_valid": { "result": "success", "reason": null },
"consent_obtained": { "result": "success", "reason": null },
"identity_is_valid": { "result": "success", "reason": null },
"first_name_match": { "result": "success", "reason": null },
"last_name_match": { "result": "success", "reason": null },
"date_of_birth_match": { "result": "success", "reason": null },
"address_full_address_match": { "result": "success", "reason": null }
},
"error": null,
"timestamp": null
}
}🇬🇧 United Kingdom Financial Services (GB_FINANCIAL_SERVICES)
Input parameters | POST /sessions example |
|---|---|
Mandatory
Optional
| With parsed address fields With |
To send address info, you can use either parsed
address.street+address.city+address.postcodeparameters or the full address viaaddress.fullAddress. Do not send both.
Sample response payload
The following info can be found in decision webhook payload and GET /decision endpoint's payload, in verifications.registryValidations object.
{
"GB_FINANCIAL_SERVICES": {
"status": "success",
"data": {
"address1": "8 Canary Wharf",
"city": "London",
"postCode": "E14 5AB",
"firstName": "James",
"lastName": "Whitfield",
"identityStrength": 85,
"identityValidity": "valid",
"identityFraud": false,
"activityHistory": "established",
"deathRegistration": false,
"amberhill": false,
"siraFraud": false,
"siraImpersonation": false,
"synthIdNoMatch": false
},
"validations": {
"processing": { "result": "success", "reason": null },
"is_input_valid": { "result": "success", "reason": null },
"identity_is_valid": { "result": "success", "reason": null },
"first_name_match": { "result": "success", "reason": null },
"last_name_match": { "result": "success", "reason": null },
"date_of_birth_match": { "result": "success", "reason": null },
"address_full_address_match": { "result": "success", "reason": null },
"phone_number_match": { "result": "success", "reason": null }
},
"error": null,
"timestamp": null
}
}🇬🇧 United Kingdom Phone (GB_PHONE)
Input parameters | POST /sessions example |
|---|---|
Mandatory
Optional
| Mandatory fields only With optional address |
If sending address, you can use either parsed
address.street+address.city+address.postcodeparameters or the full address viaaddress.fullAddress. Do not send both.
Sample response payload
The following info can be found in decision webhook payload and GET /decision endpoint's payload, in verifications.registryValidations object.
{
"GB_PHONE": {
"status": "success",
"data": {
"address1": "37 Victoria Street",
"city": "Manchester",
"postCode": "M2 3BQ",
"firstName": "Thomas",
"lastName": "Hargreaves",
"homePhoneNo": "+447700900456"
},
"validations": {
"processing": { "result": "success", "reason": null },
"is_input_valid": { "result": "success", "reason": null },
"identity_is_valid": { "result": "success", "reason": null },
"first_name_match": { "result": "success", "reason": null },
"last_name_match": { "result": "success", "reason": null },
"phone_number_match": { "result": "success", "reason": null },
"address_full_address_match": { "result": "success", "reason": null }
},
"error": null,
"timestamp": null
}
}🇬🇧 United Kingdom Phone 2 (GB_PHONE_2)
Input parameters | POST /sessions example |
|---|---|
Mandatory
Optional
| With parsed address and optional DOB With |
To send address info, you can use either parsed
address.street+address.city+address.postcodeparameters or the full address viaaddress.fullAddress. Do not send both.
Sample response payload
The following info can be found in decision webhook payload and GET /decision endpoint's payload, in verifications.registryValidations object.
{
"GB_PHONE_2": {
"status": "success",
"data": {
"address1": "19 Princes Street",
"city": "Edinburgh",
"postCode": "EH2 2BY",
"firstName": "Fiona",
"lastName": "MacAllister",
"homePhoneNo": "+447911654321",
"statusMessage": "Match found"
},
"validations": {
"processing": { "result": "success", "reason": null },
"is_input_valid": { "result": "success", "reason": null },
"identity_is_valid": { "result": "success", "reason": null },
"first_name_match": { "result": "success", "reason": null },
"last_name_match": { "result": "success", "reason": null },
"date_of_birth_match": { "result": "success", "reason": null },
"phone_number_match": { "result": "success", "reason": null },
"address_full_address_match": { "result": "success", "reason": null }
},
"error": null,
"timestamp": null
}
}🇬🇧 United Kingdom Residential (GB_RESIDENTIAL)
Input parameters | POST /sessions example |
|---|---|
Mandatory
Optional
| With all optional data |
Sample response payload
The following info can be found in decision webhook payload and GET /decision endpoint's payload, in verifications.registryValidations object.
{
"GB_RESIDENTIAL": {
"status": "success",
"data": {
"address1": "10 Downing Street",
"city": "London",
"postCode": "SW1A 2AA",
"firstName": "William",
"lastName": "Davies",
"matchedAddress": "10 Downing Street"
},
"validations": {
"processing": {"result": "success", "reason": null},
"is_input_valid": {"result": "success", "reason": null},
"identity_is_valid": {"result": "success", "reason": null},
"first_name_match": {"result": "success", "reason": null},
"last_name_match": {"result": "success", "reason": null},
"date_of_birth_match": {"result": "success", "reason": null},
"address_full_address_match": {"result": "success", "reason": null},
"phone_number_match": {"result": "success", "reason": null},
"land_line_phone_number_match": {"result": "success", "reason": null}
},
"error": null,
"timestamp": null
}
}NORTHAM
🇨🇦 Canada - Consumer (CA_CONSUMER)
Input parameters | POST /sessions example |
|---|---|
Mandatory
Optional
| |
Sample response payload
The following info can be found in decision webhook payload and GET /decision endpoint's payload, in verifications.registryValidations object. Note that the payloads contain more parameters; to find info about them see the decision webhook and GET /decision endpoint's documentation.
{
"CA_CONSUMER": {
"status": "success",
"data": null,
"validations": {
"processing": { "result": "success", "reason": null },
"is_input_valid": { "result": "success", "reason": null },
"identity_is_valid": { "result": "success", "reason": null },
"first_name_match": { "result": "success", "reason": null },
"last_name_match": { "result": "success", "reason": null },
"date_of_birth_match": { "result": "success", "reason": null },
"phone_number_match": { "result": "success", "reason": null },
"email_match": { "result": "success", "reason": null },
"address_street_match": { "result": "success", "reason": null },
"address_neighbourhood_match": { "result": "success", "reason": null },
"address_state_match": { "result": "success", "reason": null },
"address_postcode_match": { "result": "success", "reason": null }
},
"error": null,
"timestamp": null
}
}🇨🇦 Canada - Credit Bureau (FINTRAC) (CA_CREDIT_BUREAU)
Input parameters | POST /sessions example |
|---|---|
Mandatory
Optional
| |
Sample response payload
The following info can be found in decision webhook payload and GET /decision endpoint's payload, in verifications.registryValidations object. Note that the payloads contain more parameters; to find info about them see the decision webhook and GET /decision endpoint's documentation.
{
"CA_CREDIT_BUREAU": {
"status": "success",
"data": null,
"validations": {
"processing": { "result": "success", "reason": null },
"is_input_valid": { "result": "success", "reason": null },
"consent_obtained": { "result": "success", "reason": null },
"identity_is_valid": { "result": "success", "reason": null },
"first_name_match": { "result": "success", "reason": null },
"last_name_match": { "result": "success", "reason": null },
"middle_name_match": { "result": "success", "reason": null },
"date_of_birth_match": { "result": "success", "reason": null },
"address_street_match": { "result": "success", "reason": null },
"address_city_match": { "result": "success", "reason": null },
"address_state_match": { "result": "success", "reason": null },
"address_postcode_match": { "result": "success", "reason": null }
},
"error": null,
"timestamp": null
}
}🇨🇦 Canada - Credit Bureau 2 (Non-FINTRAC) (CA_CREDIT_BUREAU_2)
Input parameters | POST /sessions example |
|---|---|
Mandatory
Optional
| |
Sample response payload
The following info can be found in decision webhook payload and GET /decision endpoint's payload, in verifications.registryValidations object. Note that the payloads contain more parameters; to find info about them see the decision webhook and GET /decision endpoint's documentation.
{
"CA_CREDIT_BUREAU_2": {
"status": "success",
"data": null,
"validations": {
"processing": { "result": "success", "reason": null },
"is_input_valid": { "result": "success", "reason": null },
"identity_is_valid": { "result": "success", "reason": null },
"first_name_match": { "result": "success", "reason": null },
"last_name_match": { "result": "success", "reason": null },
"middle_name_match": { "result": "success", "reason": null },
"date_of_birth_match": { "result": "success", "reason": null },
"address_street_match": { "result": "success", "reason": null },
"address_city_match": { "result": "success", "reason": null },
"address_state_match": { "result": "success", "reason": null },
"address_postcode_match": { "result": "success", "reason": null },
"address_neighbourhood_match": { "result": "success", "reason": null }
},
"error": null,
"timestamp": null
}
}🇨🇦 Canada - Phone (CA_PHONE)
Input parameters | POST /sessions example |
|---|---|
Mandatory
Optional
| |
Sample response payload
The following info can be found in decision webhook payload and GET /decision endpoint's payload, in verifications.registryValidations object. Note that the payloads contain more parameters; to find info about them see the decision webhook and GET /decision endpoint's documentation.
{
"CA_PHONE": {
"status": "success",
"data": null,
"validations": {
"processing": { "result": "success", "reason": null },
"is_input_valid": { "result": "success", "reason": null },
"identity_is_valid": { "result": "success", "reason": null },
"first_name_match": { "result": "success", "reason": null },
"last_name_match": { "result": "success", "reason": null },
"middle_name_match": { "result": "success", "reason": null },
"phone_number_match": { "result": "success", "reason": null },
"address_street_match": { "result": "success", "reason": null },
"address_city_match": { "result": "success", "reason": null },
"address_state_match": { "result": "success", "reason": null },
"address_postcode_match": { "result": "success", "reason": null }
},
"error": null,
"timestamp": null
}
}🇨🇦 Canada - Residential (CA_RESIDENTIAL)
Input parameters | POST /sessions example |
|---|---|
Mandatory
Optional
| |
Sample response payload
The following info can be found in decision webhook payload and GET /decision endpoint's payload, in verifications.registryValidations object. Note that the payloads contain more parameters; to find info about them see the decision webhook and GET /decision endpoint's documentation.
{
"CA_RESIDENTIAL": {
"status": "success",
"data": null,
"validations": {
"processing": { "result": "success", "reason": null },
"is_input_valid": { "result": "success", "reason": null },
"consent_obtained": { "result": "success", "reason": null },
"identity_is_valid": { "result": "success", "reason": null },
"first_name_match": { "result": "success", "reason": null },
"last_name_match": { "result": "success", "reason": null },
"middle_name_match": { "result": "success", "reason": null },
"date_of_birth_match": { "result": "success", "reason": null },
"phone_number_match": { "result": "success", "reason": null },
"address_street_match": { "result": "success", "reason": null },
"address_city_match": { "result": "success", "reason": null },
"address_state_match": { "result": "success", "reason": null },
"address_postcode_match": { "result": "success", "reason": null }
},
"error": null,
"timestamp": null
}
}🇺🇸 United States - Consumer (US_CONSUMER)
Input parameters | POST /sessions example |
|---|---|
Mandatory
Optional
| |
Sample response payload
The following info can be found in decision webhook payload and GET /decision endpoint's payload, in verifications.registryValidations object. Note that the payloads contain more parameters; to find info about them see the decision webhook and GET /decision endpoint's documentation.
{
"US_CONSUMER": {
"status": "success",
"data": null,
"validations": {
"processing": { "result": "success", "reason": null },
"is_input_valid": { "result": "success", "reason": null },
"identity_is_valid": { "result": "success", "reason": null },
"first_name_match": { "result": "success", "reason": null },
"last_name_match": { "result": "success", "reason": null },
"date_of_birth_match": { "result": "success", "reason": null },
"phone_number_match": { "result": "success", "reason": null },
"email_match": { "result": "success", "reason": null },
"address_street_match": { "result": "success", "reason": null },
"address_city_match": { "result": "success", "reason": null },
"address_state_match": { "result": "success", "reason": null },
"address_postcode_match": { "result": "success", "reason": null }
},
"error": null,
"timestamp": null
}
}🇺🇸 United States - Credit Bureau (US_CREDIT_BUREAU)
Input parameters | POST /sessions example |
|---|---|
Mandatory
Optional
| |
Sample response payload
The following info can be found in decision webhook payload and GET /decision endpoint's payload, in verifications.registryValidations object. Note that the payloads contain more parameters; to find info about them see the decision webhook and GET /decision endpoint's documentation.
{
"US_CREDIT_BUREAU": {
"status": "success",
"data": null,
"validations": {
"processing": { "result": "success", "reason": null },
"is_input_valid": { "result": "success", "reason": null },
"identity_is_valid": { "result": "success", "reason": null },
"first_name_match": { "result": "success", "reason": null },
"last_name_match": { "result": "success", "reason": null },
"middle_name_match": { "result": "success", "reason": null },
"date_of_birth_match": { "result": "success", "reason": null },
"phone_number_match": { "result": "success", "reason": null },
"id_number_match": { "result": "success", "reason": null },
"email_match": { "result": "success", "reason": null },
"address_street_match": { "result": "success", "reason": null },
"address_city_match": { "result": "success", "reason": null },
"address_state_match": { "result": "success", "reason": null },
"address_postcode_match": { "result": "success", "reason": null }
},
"error": null,
"timestamp": null
}
}🇺🇸 United States - Death Check (US_DEATH_CHECK)
Input parameters | POST /sessions example |
|---|---|
Mandatory
Optional
| |
Sample response payload
The following info can be found in decision webhook payload and GET /decision endpoint's payload, in verifications.registryValidations object. Note that the payloads contain more parameters; to find info about them see the decision webhook and GET /decision endpoint's documentation.
{
"US_DEATH_CHECK": {
"status": "success",
"data": {
"dateOfDeath": "2025-01-04",
"possibleDeceasedRecord": true,
"possibleDeceasedRecordName": "John Michael Carter"
},
"validations": {
"processing": { "result": "success", "reason": null },
"is_input_valid": { "result": "success", "reason": null },
"identity_is_valid": { "result": "success", "reason": null },
"first_name_match": { "result": "success", "reason": null },
"last_name_match": { "result": "success", "reason": null },
"middle_name_match": { "result": "success", "reason": null },
"date_of_birth_match": { "result": "success", "reason": null },
"id_number_match": { "result": "success", "reason": null }
},
"error": null,
"timestamp": null
}
}🇺🇸 United States - Financial Services (US_FINANCIAL_SERVICES)
Input parameters | POST /sessions example |
|---|---|
Mandatory
Optional
| |
Sample response payload
The following info can be found in decision webhook payload and GET /decision endpoint's payload, in verifications.registryValidations object. Note that the payloads contain more parameters; to find info about them see the decision webhook and GET /decision endpoint's documentation.
{
"US_FINANCIAL_SERVICES": {
"status": "success",
"data": null,
"validations": {
"processing": { "result": "success", "reason": null },
"is_input_valid": { "result": "success", "reason": null },
"identity_is_valid": { "result": "success", "reason": null },
"first_name_match": { "result": "success", "reason": null },
"last_name_match": { "result": "success", "reason": null },
"middle_name_match": { "result": "success", "reason": null },
"date_of_birth_match": { "result": "success", "reason": null },
"phone_number_match": { "result": "success", "reason": null },
"id_number_match": { "result": "success", "reason": null },
"email_match": { "result": "success", "reason": null },
"document_number_match": { "result": "success", "reason": null },
"address_street_match": { "result": "success", "reason": null },
"address_city_match": { "result": "success", "reason": null },
"address_state_match": { "result": "success", "reason": null },
"address_postcode_match": { "result": "success", "reason": null }
},
"error": null,
"timestamp": null
}
}🇺🇸 United States - Phone (US_PHONE)
Input parameters | POST /sessions example |
|---|---|
Mandatory
Optional
| |
Sample response payload
The following info can be found in decision webhook payload and GET /decision endpoint's payload, in verifications.registryValidations object. Note that the payloads contain more parameters; to find info about them see the decision webhook and GET /decision endpoint's documentation.
{
"US_PHONE": {
"status": "success",
"data": null,
"validations": {
"processing": { "result": "success", "reason": null },
"is_input_valid": { "result": "success", "reason": null },
"identity_is_valid": { "result": "success", "reason": null },
"first_name_match": { "result": "success", "reason": null },
"last_name_match": { "result": "success", "reason": null },
"middle_name_match": { "result": "success", "reason": null },
"phone_number_match": { "result": "success", "reason": null },
"address_street_match": { "result": "success", "reason": null },
"address_city_match": { "result": "success", "reason": null },
"address_state_match": { "result": "success", "reason": null },
"address_postcode_match": { "result": "success", "reason": null }
},
"error": null,
"timestamp": null
}
}🇺🇸 United States - Phone 2 (US_PHONE_2)
Input parameters | POST /sessions example |
|---|---|
Mandatory
Optional
| |
Sample response payload
The following info can be found in decision webhook payload and GET /decision endpoint's payload, in verifications.registryValidations object. Note that the payloads contain more parameters; to find info about them see the decision webhook and GET /decision endpoint's documentation.
{
"US_PHONE_2": {
"status": "success",
"data": null,
"validations": {
"processing": { "result": "success", "reason": null },
"is_input_valid": { "result": "success", "reason": null },
"identity_is_valid": { "result": "success", "reason": null },
"first_name_match": { "result": "success", "reason": null },
"last_name_match": { "result": "success", "reason": null },
"date_of_birth_match": { "result": "success", "reason": null },
"phone_number_match": { "result": "success", "reason": null },
"id_number_match": { "result": "success", "reason": null },
"address_street_match": { "result": "success", "reason": null },
"address_postcode_match": { "result": "success", "reason": null },
"address_city_match": { "result": "success", "reason": null },
"address_state_match": { "result": "success", "reason": null }
},
"error": null,
"timestamp": null
}
}🇺🇸 United States - Residential (US_RESIDENTIAL)
Input parameters | POST /sessions example |
|---|---|
Mandatory
Optional
| |
Sample response payload
The following info can be found in decision webhook payload and GET /decision endpoint's payload, in verifications.registryValidations object. Note that the payloads contain more parameters; to find info about them see the decision webhook and GET /decision endpoint's documentation.
{
"US_RESIDENTIAL": {
"status": "success",
"data": null,
"validations": {
"processing": { "result": "success", "reason": null },
"is_input_valid": { "result": "success", "reason": null },
"identity_is_valid": { "result": "success", "reason": null },
"first_name_match": { "result": "success", "reason": null },
"last_name_match": { "result": "success", "reason": null },
"middle_name_match": { "result": "success", "reason": null },
"date_of_birth_match": { "result": "success", "reason": null },
"phone_number_match": { "result": "success", "reason": null },
"id_number_match": { "result": "success", "reason": null },
"email_match": { "result": "success", "reason": null },
"address_street_match": { "result": "success", "reason": null },
"address_city_match": { "result": "success", "reason": null },
"address_state_match": { "result": "success", "reason": null },
"address_postcode_match": { "result": "success", "reason": null }
},
"error": null,
"timestamp": null
}
}Status and reason codes
For info about the session, see:
verification.codeabout verification session decision code, one of9001,9102,9103,9104,9121.verification.statusabout verification status, one ofapproved,declined,resubmission_requested,expired,abandoned.
If the Metadata Database Verification session was declined or resubmission_requested, you can find additional information by checking:
verification.reasonfor the reason why the verification failed.verification.reasonCodefor reason code of the failed verification and cross-reference it with Granular reason codes (table).
|
|
| What does it mean? |
|---|---|---|---|
| 529 | Unable to validate National Id data | The registry check failed. The person was not found or data did not match. Check |
| 9102 | Declined | Generic decline. Check |
Full validation → rejection category code mapping
When the verification result is declined, the verification.reasonCode reflects the most impactful failed validation. Use this table to map each validation_check failure to its rejection category code:
Validation | Rejection category code |
|---|---|
| 529 |
| 566 |
| 570 |
| 529 |
| 541 |
| 576 |
| 578 |
| 529 |
| 577 |
| 573 |
| 572 |
The table above aims to list the most common reasons why you may see the decline or resubmission_requested reason for a Metadata Database Verification session. However, the session may be declined due to a reason that is not inherently related to this solution's flow (e.g. uploaded document's quality is low). In that case, to find info about the codes you are seeing, refer to:
Additional data
Best practices
In API flow, ensure that initData is present, especially the mandatory fields.
Ensure correct data formats to reduce the possibility of session going to
resubmission_requested.Document image quality: ensure that end-user's document image is of good quality. This will reduce the possibility of session going to
resubmission_requested.Person's ID number is always sent in the
document.numberparameter (notperson.idNumber).Error handling: implement proper error handling for all possible validation results.
Session declined due to third-party provider issues: implement proper session handling flow when possibly legitimate end-user's session is declined due to the third-party service provider having issues, as indicated by session code
registry_unavailable,technical_issue, orregistry_timeout.Webhook security: secure your webhook endpoint and verify request signatures.
User experience: provide clear feedback to users about validation results.
Ensure backwards compatibility for webhooks and API connections.
FAQ
Can I query multiple registries in a single session?
Yes. The workflow can be configured with multiple Metadata Database Verification steps, each targeting a different registry. Results for each registry appear under their respective <REGISTRY_KEY> in registryValidations.
What happens if I send a field that the registry does not support?
Extra fields are ignored. Only the fields relevant to the configured registry are used.
How do I know which fields are mandatory for a specific registry?
See the per-registry documentation in the Databases by Regions section. Mandatory fields are listed for each database.
What if the registry returns data about the person?
Returned data appears in the data object of the registry result. Not all registries return data, some only perform matching.
Changelog
Date | Description |
|---|---|
Jul 9, 2026 | US_DEATH_CHECK response payload example updated |
Jun 16, 2026 | US_FINANCIAL_SERVICES mandatory parameters updated |
May 29, 2026 | Databases by regions order updated |
May 27, 2026 | New databases added |
May 25, 2026 | Edited Data Sources |
Apr 20, 2026 | Documentation updated |
Apr 16, 2026 | Documentation updated |
Apr 8, 2026 | Documentation published |