Wallets
Get wallet details
Method: GET
Endpoint: {{env}}/api/wallet
You can retrieve all Zūm Rails Wallet information with a single API call. The response includes details such as: Wallet Type, Wallet ID and Wallet Balance.
This endpoint is especially useful when using a Zūm Rails wallet for Accounts Payable (AP) or Accounts Receivable (AR), as the Wallet ID is required in those workflows.
Response
Id
guid
Wallet Id
Type
string
Wallet type
EftProvider
string
The EFT provider
Balance
string
Wallet balance
BankAccountInformationId
guid
Bank account information Id
Customer
Customer details
Enable3DSecureVisa
boolean
If 3D Secure is enabled for Visa Direct
ApiKeyVisa
string
API Key for Visa Direct (used when 3D secured is enabled)
Enable3DSecureCreditCard
boolean
If 3D Secure is enabled for Credit Card
ApiKeyCreditCard
string
API Key for Credit Card (used when 3D secured is enabled)
InteracProvider
string
The Interac provider
AddressCountry
string
Customer Country
Id
guid
Customer Id
CompanyName
string
Customer name
CompanyEmail
string
Customer email
Currency
string
The currency of 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