Check Balance
Brief Description
- Use this API to get partner balance.
Request URL
Request Method
- Method: POST
- Content-Type: application/json
| Header |
Required |
Type |
Description |
| merchantNo |
Yes |
String |
Merchant number assigned by Vexora. |
Request Body Parameters
| Name |
Required |
Type |
Desc |
| timestamp |
Yes |
String |
Timestamp |
| sign |
Yes |
String |
Signature |
{
"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 |
Integer |
Timestamp๏ผ1715941383720๏ผ |
| success |
Yes |
Boolean |
Whether the balance query request succeeded. |
| data |
Yes |
Object |
Return object |
| data.availableAmount |
Yes |
Float |
Merchant balance |
| data.freezeAmount |
Yes |
Float |
Frozen amount |
| data.unsettledAmount |
Yes |
Float |
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.1200,
"unsettledAmount": 0.0000,
"freezeAmount": 0.0000
}
}