Type alias MarketplaceMerchantOwnerObject

MarketplaceMerchantOwnerObject: {
    address1: string;
    address2?: string;
    city: string;
    country: string;
    dl_numb?: string;
    dl_state?: string;
    dob: number;
    email: string;
    first: string;
    last: string;
    ownership: number;
    phone: number;
    primary: number;
    ssn: number;
    state: string;
    timezone: string;
    title: string;
    zip: number;
}

Marketplace Merchant Owners Object

Type declaration

  • address1: string

    Owner primary residence line 1 street address

  • Optional address2?: string

    Owner primary residence line 2 street address

  • city: string

    Owner primary residence city name

  • country: string

    Owner primary residence ISO-3166 3 character country code

  • Optional dl_numb?: string

    Owner driver's license number. Use numbers only, no dashes or special characters

  • Optional dl_state?: string

    Owner driver's license ISO-3166 2 character state code.

  • dob: number

    Owner date of birth. Format as YYYYMMDD

  • email: string

    Owner email address

  • first: string

    Owner first name

  • last: string

    Owner last name

  • ownership: number

    Owner percentage of ownership. Provide value in 'basis' points. Example 80% should be 8000

  • phone: number

    Owner primary phone number. Use numbers only, no dashes, parenthesis or special characters

  • primary: number

    Set as 1 if this is the primary owner. Set as 0 if not.

  • ssn: number

    Owner social security number. Use numbers only, no dashes or special characters

  • state: string

    Owner primary residence ISO-3166 2 character state/province code

  • timezone: string

    Owner primary residence timezone. Accepted values are 'est', 'cst', 'pst', 'mst', 'akst', 'hst', 'sst', 'chst' and 'ast'

  • title: string

    Title/role of the owner. Example 'President'

  • zip: number

    Owner primary residence postal code

Generated using TypeDoc