Wallet Balances
All wallet Balances
Shows the amount of money remaining in the merchant account wallets
Live
GET https://kitegateway.com/v1/data/wallets/balancesSandbox
GET https://sandbox.kitegateway.com/v1/data/wallets/balances{
"code": 200,
"status": "success",
"message": "Request completed successfully.",
"data": [
{
"currency": "UGX",
"balance": 1250000
},
{
"currency": "USD",
"balance": 7213
}
]
}Single wallet balance
Shows the amount of money remaining in a specific wallet currency
Live
GET https://kitegateway.com/v1/data/wallets/:currency/balanceSandbox
GET https://sandbox.kitegateway.com/v1/data/wallets/:currency/balance{
"code": 200,
"status": "success",
"message": "Request completed successfully.",
"data": {
"currency": "UGX",
"balance": 1250000
}
}Last updated