Skip to content

Check Disbursement Status

Tip

  • All requests are Post requests, and the data format is json
Brief Description
  • The business party can actively query the payment results.
Request URL
  • /v1/vexora/queryPayOutResult
Request Method
  • Method: POST
  • Content-Type: application/json
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)
Successful Response Example
{
    "msg": "success",
    "code": "0000",
    "timestamp": 1719830071094,
    "success": true,
    "data": {
        "platFormTradeNo": "5286e98841194687a95d25b5f3be346d",
        "tradeNo": "00000020",
        "amount": 3.0000,
        "status": "00029",
        "message": "REJECTED_TRANSACTION",
        "successTime": "2024-07-01 18:34:31"
    }
}