Check Deposit Status¶
Tip
- All requests use
POST - Content type is
application/json
Brief Description¶
Use this API to query the latest status of a Vietnam deposit order by merchant transaction number.
Request URL¶
/v1/vexora/queryPayInResult
Request Method¶
- Method: POST
- Content-Type: application/json
Header¶
| 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 generated according to the signing rules |
Request Example¶
{
"sign": "ac13b9abf95c66ffc4025abaaeeb3a83",
"timestamp": "1728613488294",
"tradeNo": "test_00000008"
}
Response Parameters¶
| Parameter name | Required | Type | Description |
|---|---|---|---|
| msg | yes | String | Request result. A successful request does not mean the transaction itself succeeded. |
| code | yes | String | API response code. Refer to the response code section for business interpretation. |
| timestamp | yes | String | Response timestamp |
| success | yes | String | Request execution result |
| data | yes | Object | Response object |
| data.tradeNo | yes | String | Merchant transaction 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 | String | Deposit amount |
| data.message | yes | String | Error description |
| data.successTime | no | String | Transaction success time in local time when available |
| data.remark | no | String | Original remark returned when available |