Sub-Accounts

Get wallet breakdown

GET
/api/sandbox/v1/multiaccount/wallet/total/breakdown

Money in and out for every organisation in your tree — collections by channel, payouts by channel, and the net balance.

Note this endpoint returns a bare array, not the usual { status, message, data } envelope.

Authorization

bearerAuth
AuthorizationBearer <token>

The access_token returned by POST /api/v1/get-token.

In: header

Response Body

application/json

application/json

curl -X GET "https://example.com/api/sandbox/v1/multiaccount/wallet/total/breakdown"
[  {    "organisationUuid": "b2f0a5ff-e9d8-4347-b46d-6eee8d195617",    "netBalance": 0,    "totalTransactions": 0,    "totalCollections": 0,    "totalStkCollection": 0,    "totalPaybillCollection": 0,    "totalSendMoney": 0,    "totalPaybill": 0,    "totalTill": 0  }]