GET
/
v2
/
wallet-balances
Wallet balances
curl --request GET \
  --url https://api.sandbox.pawapay.io/v2/wallet-balances \
  --header 'Authorization: Bearer <token>'
{
  "balances": [
    {
      "country": "ZMB",
      "balance": "21798.03",
      "currency": "ZMW",
      "provider": ""
    },
    {
      "country": "UGA",
      "balance": "10798.03",
      "currency": "UGX",
      "provider": ""
    }
  ]
}

Allows you to get the list of wallets and their balances configured for your pawaPay account.

Authorizations

Authorization
string
header
required

Query Parameters

country
string

The country you wish to limit the results to.

Format is ISO 3166-1 alpha-3, three character country code in upper case. Read more from wikipedia.

Required string length: 3
Example:

"ZMB"

Response

200
application/json

Request has been succesfully processed.

The response is of type object.