Skip to main content

Get ultimate beneficial owner by ID

GET 

https://api.publicsquare.com/business/ultimate-beneficial-owners/:id

Get a business ultimate beneficial owner by ID in the Account.

Permissions

  • business:read

Request

Path Parameters

    id stringrequired

Responses

OK

Schema
    idstringnullable

    Ultimate beneficial owner ID

    Example: ubo_5mQSxcSAW3UZ4ijLzEt4RuAib
    account_idstringnullable

    Account ID

    Example: acc_B518niGwGYKzig6vtrRVZGGGV
    government_identifier_last4stringnullable

    Last 4 of SSN or personal identifier

    Example: 8024
    created_atdate-timenullable

    Date owner was created

    Example: 2024-06-30T01:02:29.212Z
    modified_atdate-timenullable

    Date owner was modified

    Example: 2024-06-30T01:02:29.212Z
    titlestringrequired

    Job title

    Possible values: non-empty and <= 100 characters

    Example: CEO
    first_namestringrequired

    First name

    Possible values: non-empty and <= 100 characters

    Example: John
    last_namestringrequired

    Last name

    Possible values: non-empty and <= 100 characters

    Example: Smith
    percent_ownershipdoublerequired

    Percentage ownership in business of at least 25% or greater

    Example: 33
    government_identifierstringnullable

    SSN or personal identifier

    Example: 483-97-8024
    emailemailrequired

    Email address

    Possible values: non-empty and <= 250 characters

    Example: john.smith@email.com
    phonestringrequired

    Phone number

    Possible values: non-empty and <= 50 characters

    Example: +15554879043
    date_of_birthdate-timerequired

    Date of birth

    Example: 1980-11-15
    is_politically_exposed_personbooleanrequired

    Are they a politically exposed person?

    Example: false
    address objectrequired
    address_line_1stringrequired

    Street name

    Possible values: non-empty and <= 50 characters

    Example: 111 Colorado Ave.
    address_line_2stringnullable

    Apt, Suite or PO Box

    Possible values: <= 50 characters

    Example: Apt 403
    citystringrequired

    City

    Possible values: non-empty and <= 100 characters

    Example: Des Moines
    statestringrequired

    2 or 3 character ISO state code

    Possible values: >= 2 characters and <= 3 characters

    Example: IA
    postal_codestringrequired

    Postal or zip code

    Possible values: non-empty and <= 30 characters

    Example: 51111
    countrystringrequired

    2 character ISO country code

    Possible values: non-empty and <= 2 characters

    Example: US

Authorization: X-API-KEY

name: X-API-KEYtype: apiKeyscopes: business:readdescription: Authorization by API Key inside request's X-API-KEY headerin: header
var client = new HttpClient();
var request = new HttpRequestMessage(HttpMethod.Get, "https://api.publicsquare.com/business/ultimate-beneficial-owners/:id");
request.Headers.Add("Accept", "application/json");
request.Headers.Add("X-API-KEY", "<X-API-KEY>");
var response = await client.SendAsync(request);
response.EnsureSuccessStatusCode();
Console.WriteLine(await response.Content.ReadAsStringAsync());
Request Collapse all
Base URL
https://api.publicsquare.com
Auth
Parameters
— pathrequired
ResponseClear

Click the Send API Request button above and see the response here!