Allows a merchant to retrieve their balances by currency.

Request Get

.../api/v2/merchant/wallet

Returns


balance

The amount of currency present in the merchant wallet in cents.
e.g. 100 EUR would be 10000 / 50 USD would be 5000.


id

An internal ID used by Luxon.


iso2Code

The ISO 4217 two letter code of the currency.


iso3Code

The ISO 4217 three letter code of the currency.


name

The name of the currency.


sign

The currency symbol.


 

Response

{“balances”:
[
{balance: integer,
currency: {
id: long,
iso2Code: string,
iso3Code: string,
name: string,
sign: string
}
}
] }