The key person object

Attributes

uuid string Unique identifier for the object

title enum The person's role at the company. Acceptable values: "OWNER", "DIRECTOR", "BENEFICIARY"

first_name string The first name of the person

middle_name nullable, string The middle name of the person

last_name string The last name of the person

citizenship nullable, string The two-letter country code representing the citizenship of the person (ISO 3166-1 alpha-2)

email string The person's email address

phone string The person's 10-digit phone number. Must be a US number

address string The person's address, in the form of:

{        
   "line_1": "5161 Stansfield Dr",
   "line_2": null,
   "line_3": null,
   "zip": "18092",
   "city": "Zionsville",
   "state": "PA",
   "country": "UNITED STATES"
}

The key person object

{
    "uuid": "2acf04c3-48d1-456f-a54e-1m4251814478",
    "first_name": "Blair",
    "middle_name": "Cassidy",
    "last_name": "Dufresne",
    "title": "BENEFICIARY",
    "citizenship": "US",
    "email": "bcdufresne5000@gmail.com",
    "phone": "+16166723456",
    "address": {
        "line_1": "5161 Stansfield Dr",
        "line_2": null,
        "line_3": null,
        "zip": "18092",
        "city": "Zionsville",
        "state": "PA",
        "country": "UNITED STATES"
    }
}

Last updated