Check Disbursement Status¶
Tip
- All requests are
Postrequests, and the data format isjson
Brief Description¶
- None
Request URL¶
/v1/vexora/queryPayOutResult
Request Method¶
- Method: POST
- Content-Type: application/json
Header¶
| Header | Required | Type | Description |
|---|---|---|---|
| merchantNo | No | String | None |
Request Body Parameters¶
| Name | Required | Type | Description |
|---|---|---|---|
| tradeNo | Yes | String | Transaction number passed by the merchant when collecting payment |
| timestamp | Yes | String | Timestamp |
| sign | Yes | String | Encryption |
Request Example¶
{
"sign": "b94084c49e6292b3eff2b1defea69d55",
"timestamp": "1729156246442",
"tradeNo": "133323392"
}
Successful Response Example¶
| Parameter Name | Required | Type | Description |
|---|---|---|---|
| msg | Yes | String | Request result (when returning "success", it only indicates that this request was successful; it should not be used for merchant-side logic judgment) |
| code | Yes | String | Request response code (when returning "0000", it only indicates that this request was successful; it should not be used for merchant-side logic judgment). For specific error codes, please refer to the business error code enumeration. |
| timestamp | Yes | String | Timestamp (e.g., 1715941383720) |
| success | Yes | String | Transaction result |
| data | Yes | Object | Returned object |
| data.platFormTradeNo | Yes | String | Platform order number |
| data.tradeNo | Yes | String | Merchant transaction number returned |
| data.orderAmount | yes | float | Order amount |
| data.payAmount | yes | float | Payment 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 |