Balance check
Example of request to get the current balance status of the user's account in the personal cabinet. The balance status contains information about the user's current balance, is updated regularly and can be requested by the user at any time.
URI: /api/xml.php
All requests to API are sent in XML format using the POST method.
Request example
<?xml version="1.0" encoding="utf-8" ?>
<package key="bb56a4369eb19***cfec6d1776bd25">
<balance></balance>
</package>
Response examples
- Successful
HTTP Status Code: 200
Content Type: JSON application/json
<?xml version="1.0" encoding="utf-8" ?>
<package>
<balance>
<amount>10.526</amount>
<currency>UAH</currency>
</balance>
</package>