Get balance of the merchant
GET/merchant-api/v1/balance
This method is showing the current balance and hold_balance of the merchant
To use method you must send empty body in the HTTP request
Request
Responses
- 200
The balance and hold balance of the merchant
- application/json
- Schema
- Example (from schema)
Schema
balance stringrequired
Balance of the merchant
hold_balance stringrequired
Hold_balance of the merchant
currency_id stringrequired
Currency of the balance
{
"balance": "2500",
"hold_balance": "0",
"currency_id": "RUB"
}
Loading...