Linking a UBO to an entity

Once you've created an entity, you can link ultimate beneficial owners to the entity.

When you've created an entity, use this endpoint to link other applicants or entities as ultimate beneficial owners (UBOs) to the original entity. This will allow you to clearly view the company structure.

Note: You don't need to use this endpoint if you're verifying an entity using a verification link. Verification links require representatives to input UBOs during the verification process.

Before linking a UBO, make sure you have created the applicant or entity using the required endpoints: Creating an applicantor Creating an entity. You will need to remember their applicantId for this call and input them into uboApplicantId.


POST /api-add-ubo

Once all documents have been uploaded, start the verification process.

NameValue

Content-Type

multipart/form-data

Authorization

Bearer YOUR_TOKEN

Body

NameTypeDescription

applicantId

string

The entity's applicantId you wish for others to be linked to (required)

uboApplicantId

string

Unique applicantId generated on applicant or entity creation (required)

position

string

The type of UBO - see below for options (required)

UBO position types

NameDescription

Director

A director of the entity

Shareholder

A shareholder of the entity

Other

Use this when nothing else applies

curl --location 'https://enterprise.personr.co/api/1.1/wf/api-add-ubo' \
--form 'applicantId="4242424242424x424242424242424242"' \
--form 'uboApplicantId="4242424242424x424242424242424242"' \
--form 'position="Director"' \
-H 'Authorization: Bearer YOUR_ACCESS_TOKEN'

Response

{
"status":"success",
"applicantId":"4242424242424x424242424242424242",
"ubos":[   {
        "applicantId":"4242424242424x424242424242424242",
        "type":"Individual",
        "position":"Director"
    }],
"errors":[]
}

Last updated