Skip to content

Check Balance

Brief Description
  • Use this API to get partner balance.
Request URL
  • /v1/vexora/queryBalance
Request Method
  • Method: POST
  • Content-Type: application/json
Header Required Type Description
merchantNo Yes String No
Request Body Parameters
Name Required Type Desc
timestamp Yes String Timestamp
sign Yes String Encrypt
{
  "timestamp": "1724151084278",
  "sign": "8d1bdd4d9d6b642c6843464c72e6a5a1"
}
Response Parameters
Name Required Type Desc
msg Yes String Request result (when success is returned, it only means that the request for this time is successful and cannot be used for merchant-side logical judgment)
code Yes String Request response code (when 0000 is returned, it only means that the request for this time is successful, and cannot be used for merchant-side logical judgment). For specific status/error codes, please check the status/error code directory
timestamp Yes String Timestamp๏ผˆ1715941383720๏ผ‰
success Yes String Trading results
data Yes Object Return object
data.availableAmount Yes String Merchant balance
data.freezeAmount Yes String Frozen amount
data.unsettledAmount Yes String The amount to be settled, all receipts in the same day will be automatically settled into the available balance in T1
{
    "msg": "success",
    "code": "0000",
    "timestamp": 1719830171485,
    "success": true,
    "data": {
        "availableAmount": 9998989.0000,
        "unsettledAmount": 0.0000,
        "freezeAmount": 0.0000
    }
}