Check Disbursement Status¶
Tip
- All requests are
Postrequests, and the data format isjson
Brief Description¶
- The business party can actively query the payment results.
Request URL¶
/v1/vexora/queryPayOutResult
Request Method¶
- Method: POST
- Content-Type: application/json
Header¶
| Name | required | type | desc |
|---|---|---|---|
| merchantNo | Yes | String | - |
Request Body Parameters¶
| Name | required | type | desc |
|---|---|---|---|
| tradeNo | Yes | String | Transactions requested by the business party |
| timestamp | Yes | String | timestamp |
| sign | Yes | String | sign |
Request Example¶
{
"sign": "ee5c512fe36fed2afe2d36ab248e0eb8",
"timestamp": "1728613320708",
"tradeNo": "test_00000002"
}
Successful Response Example¶
| Parameter | Required | Type | Description |
|---|---|---|---|
| msg | Yes | String | Request result (when returning success, it only indicates that the request was successful and cannot be used for merchant-side logic judgment) |
| code | Yes | String | Request response code (when returning 0000, it only indicates that the request was successful and cannot be used for merchant-side logic judgment). For specific error codes, please refer to the business error code enumeration. |
| timestamp | Yes | String | Transaction time |
| success | Yes | String | Transaction result |
| data | Yes | Object | Return object |
| data.platFormTradeNo | Yes | String | vexora transaction number |
| data.amount | Yes | String | Transaction amount |
| data.status | Yes | String | Transaction results,Merchants can process subsequent workflows based on the returned status in the transaction result. For details, please refer to the status code reference table. |
| data.message | Yes | String | Error description |
| data.successTime | Yes | String | Transaction success time (local time) |