Wallets
List all wallets
Method: GET
Endpoint: {{env}}/api/wallet
All the information from the Zūm Wallets can be pulled with one API call. The information includes the wallet type, the wallet ID and the balance. A useful example for this endpoint is when using a Zūm wallet for AP or AR, the Wallet ID is mandatory.
Response
Id
guid
Wallet id
Type
string
Wallet type
Balance
decimal
Current balance in the wallet
Filter wallet transactions
Use this endpoint if you want to list the transactions from a specific wallet. These are the debits and credits that happened in the respective wallet.
Method: POST
Endpoint: {{env}}/api/wallet/transactions/filter
Input parameters
WalletId
guid
yes
Wallet id
TransactionMethod
string
no
Transaction method
ZumRailsType
string
no
Transaction Type
GenericSearch
string
no
Filter wallets by description
CreatedAtFrom
datetime
no
Start date (This field is only used when the operator is between)
CreatedAtTo
datetime
no
End date (This field is only used when the operator is between)
CreatedAt
datetime
no
Create date
CreatedAtOperator
string
no
Operator to filter with CreatedAt properties
Pagination
no
PageNumber
number
no
The respective page, starting at 1
Response
CurrentPage
number
The current page
PageSize
number
The amount of rows returned in the current page
TotalCount
number
The total rows the filter returns
Items
List of wallet transactions
Id
guid
Transaction id
CreatedAt
datetime
When the transaction was created
Description
string
Transaction description
Debit
decimal
Debit amount
Credit
decimal
Credit amount
Balance
decimal
Balance at that moment
Type
string
Credit or Debit
Authorized
bool
If the transaction is completed and authorized
Last updated