Skip to content

Check Deposit Status

Tip

  • All requests are Post requests, and the data format is json
Request URL
  • /v1/vexora/queryPayInResult
Request Method
  • Method: POST
  • Content-Type: application/json
Parameter Required Type Description
merchantNo No String Merchant number
Request Body Parameters
Name Required Type Description
tradeNo Yes String Transaction number provided by the merchant during payin.
timestamp Yes String Timestamp of the request.
sign Yes String Encrypted signature.
Request Example
{
  "sign": "b94084c49e6292b3eff2b1defea69d55",
  "timestamp": "1729156246442",
  "tradeNo": "133323392"
}
Successful Response Example
Parameter Name Required Type Description
msg Yes String Request result (only indicates the success of the current request, not for merchant-side logic).
code Yes String Response code (only indicates the success of the current request, not for merchant-side logic). For specific error codes, refer to the business error code enumeration.
timestamp Yes String Timestamp of the response.
success Yes String Transaction result.
data Yes Object Returned object.
data.platFormTradeNo Yes String Unique platform transaction number.
data.tradeNo Yes String Merchant transaction number returned.
data.amount Yes String Actual 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.
data.successTime Yes String Transaction success time (local time).
Successful Response Example
{
    "msg": "success",
    "code": "0000",
    "timestamp": 1729156267022,
    "success": true,
    "data": {
        "platFormTradeNo": "cch55ta98fee3huy",
        "tradeNo": "133323392",
        "amount": "50000.00",
        "status": "00029",
        "message": "Processing"
    }
}