ResponseGlobalBalanceDto
The ResponseGlobalBalanceDto object is part of the NoWallet API and returns a comprehensive summary of a merchant’s financial balances, both globally (all countries combined) and broken down by individual countries. It is particularly useful for merchants operating in multiple regions.
JSON Response Example
The following JSON object is a typical example of a global balance response:
{
"bglobal": {
"balance": 200,
"deposit": 140,
"withdrawal": 60,
"potentialBalance": 100,
"possibleWithdrawal": 100,
"update": "2025-01-01TZ00:00:00"
},
"bcountry": [
{
"balance": 200,
"deposit": 150,
"withdrawal": 60,
"potentialBalance": 100,
"possibleWithdrawal": 100,
"update": "2025-01-01TZ00:00:00"
}
]
}
Properties
| Name | Type | Required | Restrictions | Description |
|---|---|---|---|---|
| bglobal | object | true | none | merchant global balance infos |
| bcountry | array | true | none | list of country balance infos |
This page was helpful?