Skip to main content

Check Wallet Balance

This endpoint checks balance on a mobile money wallet.

HTTP Request

GET
https://payments.relworx.com/api/mobile-money/check-wallet-balance

Arguments

ParameterTypeRequiredDescription
account_nostringYesBusiness account number. This is generated for you when you create a business account.
currencystringYes3 letter ISO currency code for example UGX.

HTTP Response

ParameterTypeDescription
balancestringBalance on mobile money wallet.

Sample check wallet balance request.

Make sure to replace <--Your API Key--> with your obtained api key.

   curl -i -H "Accept: application/vnd.relworx.v2" -H "Content-Type: application/json" -H "Authorization: Bearer <--Your API Key-->" https://payments.relworx.com/api/mobile-money/check-wallet-balance\?account_no\=RELB0C798FGHVCS\&currency\=UGX

Sample response.

{
"success": true,
"balance": 0.0,
}