Type alias MarketplaceMerchantParameters

MarketplaceMerchantParameters: {
    annualCCSales?: number;
    avgTicket?: number;
    bank_accounts: MarketplaceMerchantBankObject[];
    descriptor: string;
    mcc?: string;
    merchant: MarketplaceMerchantObject;
    owners: MarketplaceMerchantOwnerObject[];
}

Add / Enroll a MarketPlace Merchant to portfolio

Type declaration

  • Optional annualCCSales?: number

    The value of annual credit card sales for this merchant. Value should be in cents. Example $100,000.00 should be 10000000

  • Optional avgTicket?: number

    The value of average credit card sales for this merchant. Value should be in cents. Example $100.00 should be 10000

  • bank_accounts: MarketplaceMerchantBankObject[]

    Bank account object array. Ensure at least 1 bank account is provided as 'primary'

  • descriptor: string

    The name under which the merchant is doing business

  • Optional mcc?: string

    The Merchant Category Code for the merchant. Contact service provider for proper code

  • merchant: MarketplaceMerchantObject

    Maerchant Detail

  • owners: MarketplaceMerchantOwnerObject[]

    Owners object array. Ensure at least 1 'primary' owner object is provided

Generated using TypeDoc