Skip to content

Check Disbursement Status

Tip

  • All requests are Post requests, and the data format is json
Brief Description
  • None
Request URL
  • /v1/vexora/queryPayOutResult
Request Method
  • Method: POST
  • Content-Type: application/json
Name Required Type Description
merchantNo Yes String None
Request Body Parameters
Name Required Type Description
tradeNo Yes String Transaction number passed when the merchant collects on behalf for outbound payments
timestamp Yes String Timestamp
sign Yes String Encryption
Request Example
{
    "tradeNo": "PKFORM_out002",
    "timestamp": "1724142308374",
    "sign": "000000000"
}
Success Response Example
Parameter Name Required Type Description
msg Yes String Request result (when returning "success", it only indicates the success of this request and cannot be used for merchant-side logical judgment)
code Yes String Request response code (when returning "0000", it only indicates the success of this request and cannot be used for merchant-side logical 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 order number
data.amount Yes String Actual payment amount, which may include partial payments
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)
{
    "msg": "success",
    "code": "0000",
    "timestamp": 1719830071094,
    "success": true,
    "data": {
        "platFormTradeNo": "5286e98841194687a95d25b5f3be346d",
        "tradeNo": "PKFORM_out002",
        "amount": "3000",
        "status": "00029",
        "message": "REJECTED_TRANSACTION",
        "successTime": "2024-07-01 18:34:31"
    }
}