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 |
Request Body Parameters
| Name |
Required |
Type |
Desc |
| timestamp |
Yes |
String |
Timestamp |
| sign |
Yes |
String |
Signature generated according to the signing rules |
{
"timestamp": "1724151084278",
"sign": "8d1bdd4d9d6b642c6843464c72e6a5a1"
}
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 |
String |
Response timestamp |
| success |
yes |
String |
Request execution result |
| data |
yes |
Object |
Response object |
| data.availableAmount |
yes |
String |
Available balance |
| data.freezeAmount |
yes |
String |
Frozen amount |
| data.unsettledAmount |
yes |
String |
Unsettled amount. Same-day collections are typically settled to the available balance on T+1. |
{
"msg": "success",
"code": "0000",
"timestamp": 1719830171485,
"success": true,
"data": {
"availableAmount": 9998989.0000,
"unsettledAmount": 0.0000,
"freezeAmount": 0.0000
}
}