WalletBalanceDto Data Type

Parameters to calculate wallet balance. Seller, customer, customer account, billing account and user account code parameters are mutually exclusive and only one of them should be provided.

Implemented Interfaces
Serializable
Properties
name data type description
sellerCode string Seller code.
customerCode string Customer code.
customerAccountCode string Customer account code.
billingAccountCode string Billing account code.
userAccountCode string User account code.
startDate number Date period to calculate balance: from.
endDate number Date period to calculate balance: to.
walletCode string Wallet template code.
amountWithTax boolean What amount to calculate - amount with tax if value is TRUE, amount without tax if value is FALSE. Not used since v. 5.0.1. Wallet API returns both amounts

Example

{
  "sellerCode" : "...",
  "customerCode" : "...",
  "customerAccountCode" : "...",
  "billingAccountCode" : "...",
  "userAccountCode" : "...",
  "startDate" : 12345,
  "endDate" : 12345,
  "walletCode" : "..."
}