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 status of a Malaysia collection transaction.
Request URL
  • /v1/vexora/queryPayInResult
Request Method
  • Method: POST
  • Content-Type: application/json
Name Required Type Description
merchantNo Yes String Merchant number assigned by Vexora.
Request Body Parameters
Name Required Type Description
tradeNo Yes String Merchant transaction number submitted in the original collection request.
timestamp Yes String Timestamp
sign Yes String Request signature
Request Example
{

  "sign": "b609f38f4c3900a82beaf2222611083d",
  "timestamp": "1729153976003",
  "tradeNo": "MY202605140001"
}
Successful Response Example
Parameter Name Required Type Description
msg Yes String API request message. A value such as success only indicates that the API request was processed.
code Yes String API request code. 0000 only indicates that the API request was successful. Use data.status to determine the transaction result.
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 transaction number returned
data.status Yes String Transaction status. Use this value to determine the final business result. For details, refer to the response code section.
data.amount yes String Transaction amount
data.message yes String Error description
{
    "msg": "success",
    "code": "0000",
    "timestamp": 1729325978798,
    "success": true,
    "data": {
        "platFormTradeNo": "MYPI202605140001",
        "tradeNo": "MY202605140001",
        "status": "0000",
        "amount": "100.00",
        "message": "SUCCESS"
    }
}