Verifying entity information

Verify entity, or company, data against registries and commercial data sources.

With database verification, you only need to use this endpoint. Entities are created and submitted for processing automatically.

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


Verify identity data

POST /api-entity-database-verification

Create the entity, match and verify the entity data, and request verification.

Name
Value

Content-Type

multipart/form-data

Authorization

Bearer YOUR_TOKEN

Body

Name
Type
Description

flowName

string

The name of the flow your Account Manager has provided

(required)

companyName

string

The entity's legal name (required)

registrationNumber

string

The entity's registration number (required)

country

string

The entity's registration country, in alpha-3 format (required)

sourceKey

string

An internal unique identifier, or source, that you can use to identify where the entity came from, which is returned in all responses (optional)

externalUserId

list

External identifiers that are returned in all responses (optional)

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

Request

curl --location 'https://enterprise.personr.co/api/1.1/wf/api-entity-database-verification' \
--form 'flowName="KYB Basic"' \
--form 'companyName="Personr Pty Ltd"' \
--form 'registrationNumber="123456789"' \
--form 'country="AUS"'

Response

{
    "status": "success",
    "response": {
        "applicantId": "4242424242424242x42424242424242",
        "flow": "KYB Basic",
        "status": "Pending"
    }
}

Last updated

Was this helpful?