MarketplaceMerchantObject: {
    address1: string;
    address2?: string;
    city: string;
    country: string;
    ein: number;
    email: string;
    name: string;
    phone: number;
    state: string;
    tcDate: string | number;
    timezone: string;
    type: number;
    website: string;
    zip: number;
}

Marketplace Merchant Object

Type declaration

  • address1: string

    The first line of the address associated with the merchant.

  • Optional address2?: string

    The second line of the address associated with the merchant.

  • city: string

    The merchant address city name

  • country: string

    The merchant address ISO-3166 3 character country code.

  • ein: number

    The IRS Employer Identication Number associated with this merchant. If the business is a Sole Proprietor this should match the SSN of the primary owner. Use numbers only, no dashes or special characters

  • email: string

    The merchant primary contact email address

  • name: string

    Merchant name

  • phone: number

    The merchant primary contact phone number. Use numbers only, no dashes, parenthesis or special characters

  • state: string

    The merchant address ISO-3166 2 character state/province code

  • tcDate: string | number

    Timestamp when terms and conditions were signed by seller/merchant. Use unix timestamp (number of seconds since January 1, 1970).

  • timezone: string

    The merchant timezone. Accepted values are 'est', 'cst', 'pst', 'mst', 'akst', 'hst', 'sst', 'chst' and 'ast'

  • type: number

    Merchant type. Accepted values are 0 for Sole Proprietor, 1 for Corporation, 2 for Limited Liability Company, 3 for Partnership, 5 for Non-Profit Organization and 6 for Government Organization

  • website: string

    The merchant marketplace website

  • zip: number

    The merchant address postal code

Generated using TypeDoc