# Create business ultimate owners

Adds new ultimate beneficial owners to the business profile.

Returns the list of all ultimate beneficial owners associated with the business profile.

All the shareholders that have at least 25% ownership should be submitted via this API.

Note that in some cases, we do not require the ownershipPercentage. In these cases, null should be passed as the value.

Endpoint: POST /v1/profiles/{profileId}/ubos
Security: UserToken

## Path parameters:

  - `profileId` (integer, required)
    Business profile ID.

## Request fields (application/json):

  - `name` (string)
    Owner full name.
    Example: "John Doe"

  - `dateOfBirth` (string)
    Date of birth.
    Example: "1982-05-20"

  - `countryOfResidenceIso3Code` (string)
    3 character country code.
    Example: "usa"

  - `addressFirstLine` (string)
    First line of address.
    Example: "123 Fake St"

  - `postCode` (string)
    Address post code.
    Example: "FK 12345"

  - `ownershipPercentage` (integer,null)
    Percentage of ownership.
    Example: 30

## Response 200 fields (application/json):

  - `id` (string)
    ID of the ultimate beneficial owner.
    Example: "013ab1c2688d0185b582ee7e0bcb28b2"

  - `name` (string)
    Owner full name.
    Example: "John Doe"

  - `dateOfBirth` (string)
    Date of birth.
    Example: "1982-05-20"

  - `countryOfResidenceIso3Code` (string)
    3 character country code.
    Example: "usa"

  - `addressFirstLine` (string)
    First line of address.
    Example: "123 Fake St"

  - `postCode` (string)
    Address post code.
    Example: "FK 12345"

  - `ownershipPercentage` (integer,null)
    Percentage of ownership.
    Example: 30


