Balance Inquiry

The API allows the merchant to check the balance(s) for the different currencies they might hold.

GET https://sandbox-api.govbill.ug/v1/wallet-balances

The endpoint retrieves the balance(s) by currency

Headers

Name
Type
Description

public-key*

String

The Public Key as shared in the approval email

secret-key*

String

The Secret Key as shared in the approval email

{
  "code": 200,
  "status": "success",
  "message": "Request completed successfully.",
  "data": {
    "merchant_wallets": [
      {
        "merchant_id": 6,
        "currency": "UGX",
        "balance": 2009768
      }
    ]
  }
}

Last updated