SwiftGoma.SwiftGoma

Search endpoints

Jump to any API endpoint by name, method, or path

Wallet & Configuration

Get wallet balances

GET/api/v1/pawapay/wallet-balances

Returns the platform's current PawaPay wallet balances, by currency.

Requires Authorization
ADMIN, ACCOUNTANT only
Session
Request
curl --request GET \
  --url https://api.swiftgoma.com/api/v1/pawapay/wallet-balances \
  --header 'Authorization: Bearer <access_token>'
200Example response
{
  "success": true,
  "data": {
    "balances": [
      {
        "currency": "USD",
        "amount": "1250.00"
      },
      {
        "currency": "CDF",
        "amount": "3500000"
      }
    ]
  }
}