The commercial user object

Attributes

uuid string Unique identifier for the object

first_name string The name of the business

user_type string The type of the user ("BUSINESS")

dwolla_customer_url nullable, string The unique dwolla customer url, if using the dwolla API

email string The business's email address

start_date string The incorporation date of the business

entity enum The business entity type. Acceptable values:

'SOLE_PROPRIETORSHIP', 'GENERAL_PARTNERSHIP', 'LIMITED_PARTNERSHIP', 'CORPORATION', 'LIMITED_LIABILITY_COMPANY', 'LIMITED_LIABILITY_PARTNERSHIP'

key_people array A list of key people at the business. See the key people object for more details

phone string The 10-digit phone number for the business. Must be a US number

address object The address of the business, 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 user object

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

Last updated