Customer Account Object

The Customer Account Object represents a client under a Company that can workers, checks, and shifts can be attributed to.

attributetypedescription
customer_account_idstringUnique identifier representing this customer account
company_idstringCompany ID that this customer account is under
partner_idstringPartner ID associated with the Company and customer account
codestringCustom code to be associated with the customer account
business_namestringBusiness name of customer account
einstringEIN of the customer account
legal_structurestringFederal tax classification of the customer account entity
phonestringPhone number of the customer account
emailstringBusiness email of the customer account
business_addressstringStreet address of the customer account
business_citystringCity
business_statestringUS State or Territory (2-letter abbreviation, see ANSI)
business_zipstringZIP code (5 digits)
business_ownerobjectObject containing business owner (UBO) information
statusstringOnboarding status of customer account (initial_onboarding, payment_permission_pending, live, offboarded)
funding_sourceobjectObject containing associated Funding Source data
{
  "customer_account_id": "23b9ada702984edeb1496c1cb95abc8c",
  "company_id": "dcb3bd9403ad41c98bbc2b4d54d88a44",
  "partner_id": "c133eed2c9b8419ba2f22dc059bd445a",
  "code": "customer-code-2",
  "business_name": "Taco Bell",
  "ein": "777777777",
  "legal_structure": "llc",
  "phone": "1234567890",
  "email": "[email protected]",
  "business_address": "1 ferry building",
  "business_city": "San francisco",
  "business_state": "CA",
  "business_zip": "94103",
  "business_owner": {
    "first_name": "Erlich",
    "last_name": "Bachman",
    "email": "[email protected]",
    "ssn": "345237890",
    "dob": "1990-01-01",
    "title": "CEO",
    "ownership_percentage": 47,
    "owner_type": "authorized_signer",
    "address": "1600 Pennsylvania Ave NW",
    "city": "Washington",
    "state": "DC",
    "zip": "20500"
  },
  "status": "live",
  "funding_source": {
    "account_number": "849201923",
    "account_type": "checking",
    "routing_number": "314074269"
  },
}