• API. Get customers balances getBalanceCustomersExt
    The command returns the customers' balances. For the convenience of the work, it is possible to limit the requested information both with the answer type (the answerType parameter) and the transmission of the time interval (start / end parameter).

    Request:

{
    "answerType":"fullinfo",
    "userSelector":"requestedUsers",
    "logins":[
        "12345678910",
        "12345678911"
    ],
    "typeOfCommand":"getBalanceCustomersExt"
}
Request parameters:
Response:

{
    "status"   :"Success",
    "error"    :null,
    "balancesExt" : [
        {
            "login":"12345678910",
            "balance":100.00,
            "email":email@email.ru,
            "phone":"+79051233223",
            "status":"Success",
            "error":null
             
        },
        {
            "login":"12345678911",
            "balance":null,
            "email":null,
            "phone":"null",
            "status":"Failure",
            "error":{
                "typeOfError":"wrongData",
                "description":"The buyer does not exist"
            }
        }
    ]
} 
Response parameters:
Type BalancesExt:
Object Error: