Table of Contents
Wallet Balance #
Retrieves the balance summary for all wallets belonging to an individual.
Endpoint #
POST https://api-test.10npay.com/api/v1/IndividualWallet/wallet-balance
Headers #
Authorization: Bearer <access_token>Content-Type: application/json
Request Body #
{
"id": 2077
}
Response — 200 OK #
[
{
"walletId": 456,
"currency": "BGN",
"availableBalance": 100.25,
"bookBalance": 100.25
}
]
Errors #
- 400 Bad Request — individual has no wallets or request invalid.
- 401 Unauthorized — missing/expired token.
- 404 Not Found — unknown individual.
- 5xx — transient server error.
Notes #
- Use this endpoint to show balances in dashboards or before initiating transfers.
- Combine with
GET /api/v1/IndividualWallet/{id}/walletsto match balances with wallet metadata.
