Skip to content

Check Deposit Status

Tip

  • All requests are Post requests, and the data format is json
Brief Description
  • Use this API to query the latest deposit status by merchant trade number.
Request URL
  • /v1/vexora/queryPayInResult
Request Method
  • Method: POST
  • Content-Type: application/json
Header Required Type Description
merchantNo Yes String Merchant number
Request Body Parameters
Name Required Type Desc
tradeNo Yes String Merchant order number
timestamp Yes String Timestamp
sign Yes String Signature
Request Example
{

  "sign": "ac13b9abf95c66ffc4025abaaeeb3a83",
  "timestamp": "1728613488294",
  "tradeNo": "test_00000008"
}
Successful Response Example
Parameter name Required Type Description
msg yes String Request result (when success is returned, it only means that the request for this time is successful and cannot be used for merchant-side logical judgment)
code yes String Request response code (when 0000 is returned, it only means that the request for this time is successful, and cannot be used for merchant-side logical judgment). For specific status/error codes, please check the status/error code directory
timestamp yes Integer Timestamp๏ผˆ1715941383720๏ผ‰
success yes Boolean Trading results
data yes Object Return object
data.tradeNo yes String Merchant order number
data.platFormTradeNo yes String vexora transaction number
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.amount yes Float Payment amount
data.message yes String Error description
{
    "msg": "success",
    "code": "0000",
    "timestamp": 1728613513280,
    "success": true,
    "data": {
        "tradeNo": "test_00000008",
        "platFormTradeNo": "68o0uwogz7mnzutt",
        "status": "00029",
        "amount": 300,
        "message": "Fail"


    }
}