Verifying applicant identity data

Verify identity data against government and commercial data sources.

With database verification, you only need to use this endpoint. Applicants are created and submitted for processing automatically. A lot of the data below is optional, but the match accuracy is increased when more data is provided.

Make sure you pass the correct sourceCountry when calling this endpoint. This tells us the relevant data sources to check within the country.


Verify identity data

POST /api-database-verification

Create the applicant, match and verify the identity data, and request verification.

NameValue

Content-Type

multipart/form-data

Authorization

Bearer YOUR_TOKEN

Body

NameTypeDescription

flowName

string

The name of the flow your Account Manager has provided

(required)

email

string

The applicant's email address (optional)

phone

string

The applicant's phone number (optional)

firstName

string

The applicant's first name (required)

middleName

string

The applicant's middle name (optional)

lastName

string

The applicant's last name (required)

dob

string

The applicant's date of birth, formatted as YYYY-MM-DD (optional)

idNumber

string

The applicant's document number (optional)

sourceCountry

string

The applicant's country, used to check relevant sources, formatted in alpha-3 (required)

street

string

The applicant's street number and name (optional)

city

string

The applicant's town or city (optional)

stateTerritory

string

The applicant's state or territory (optional)

postCode

string

The applicant's postcode (optional)

country

string

The applicant's address country,

formatted in alpha-3 (optional)

Use ISO 3166-1 A3 format for sourceCountry and country. See here for country codes.

Request

curl --location 'https://enterprise.personr.co/api/1.1/wf/api-database-verification' \
--form 'flowName="Database Verification"' \
--form 'email="example@personr.co"' \
--form 'phone="0400000000"' \
--form 'firstName="SIMONE"' \
--form 'middleName="LEE"' \
--form 'lastName="HARDING"' \
--form 'dob="1985-10-27"' \
--form 'idNumber="1234567A"' \
--form 'sourceCountry="AUS"' \
--form 'street="123 EXAMPLE LANE"' \
--form 'city="PERTH"' \
--form 'stateTerritory="WESTERN AUSTRALIA"'
--form 'postCode="6000"' \
--form 'country="AUS"'

Response

{
    "status": "success",
    "response": {
        "applicantId": "4242424242424242x42424242424242",
        "flow": "Database Verification",
        "status": "Pending"
    }
}

Last updated