Check Balance
Brief Description
Use this API to query the current merchant balance information.
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 generated according to the signing rules |
{
"timestamp": "1778919600000",
"sign": "0c8f7bb6d15c3d5a44e9e8a06df8cbd9"
}
Response Parameters
| Name |
Required |
Type |
Desc |
| msg |
Yes |
String |
Request result. A successful request does not imply business success or failure for any transaction. |
| code |
Yes |
String |
API response code. Refer to the response code section for interpretation. |
| timestamp |
Yes |
Integer |
Response timestamp |
| success |
Yes |
Boolean |
Whether the balance query request succeeded. |
| data |
Yes |
Object |
Response object |
| data.availableAmount |
Yes |
Float |
Available balance |
| data.freezeAmount |
Yes |
Float |
Frozen amount |
| data.unsettledAmount |
Yes |
Float |
Unsettled amount. Same-day collections are typically settled to the available balance on T+1. |
{
"msg": "success",
"code": "0000",
"timestamp": 1778919600123,
"success": true,
"data": {
"availableAmount": 9998989.1200,
"unsettledAmount": 0.0000,
"freezeAmount": 0.0000
}
}