Skip to content

Check Deposit 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/queryPayInResult
Request Method
  • Method: POST
  • Content-Type: application/json
Name Required Type Description
merchantNo Y String -
Request Body Parameters
Name Required Type Description
tradeNo Y String Transaction number passed by the merchant when making the payment
timestamp Y String Timestamp
sign Y String Encryption
Request Example
{

  "sign": "b609f38f4c3900a82beaf2222611083d",
  "timestamp": "1729153976003",
  "tradeNo": "133323384"
}
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.tradeNo Yes String Unique disbursement ID which partner put on the request.
data.platFormTradeNo Yes String Unique disbursement ID from vexora, partners can use this ID for reconciliation.
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)
{
    "msg": "success",
    "code": "0000",
    "timestamp": 1729325978798,
    "success": true,
    "data": {
        "platFormTradeNo": "7zr8om5hzclkemsz",
        "tradeNo": "133323384",
        "amount": "50000.00",
        "status": "0000",
        "successTime": "2024-10-19 14:37:28"
    }
}