ResponseSingleBalanceDto
The ResponseSingleBalanceDto defines the structure of a response object returned by the NoWallet API when requesting a merchant’s current balance for a specific country or currency.
This DTO provides full insight into the available, pending, and historical movement of funds within a merchant account.
JSON Response Example
The following JSON object is a typical example of a single balance response:
{
"balance": 200,
"deposit": 140,
"withdrawal": 60,
"potentialBalance": 100,
"possibleWithdrawal": 100,
"update": "2025-01-01TZ00:00:00"
}
Properties
The Properties table explains the fields included in the ResponseSingleBalanceDto:
| Name | Type | Required | Restrictions | Description |
|---|---|---|---|---|
| balance | number | true | none | merchant balance for country code |
| deposit | number | true | none | total deposit (pay in) amount for this balance |
| withdrawal | number | true | none | total withdrawal (pay out) amount for this balance |
| potentialBalance | number | true | none | pending(waiting for validation) amount for this balance |
| possibleWithdrawal | number | true | none | real amount merchant can withdrawal for this balance |
| update | string | false | none | last date of update for this balance |
This page was helpful?