Overview
Retrieve successfully processed orders in real-time to help with transaction reporting.
Function
- Query successful orders by time range.
- Only orders within the last six months are supported.
- Pagination parameter pages defaults to 1.
Flow Chart
Check Order Status
- The merchant server calls the order status query function and submits the required parameters.
curl -X POST '/service/QueryOrdersList'
-H 'Content-Type: application/x-www-form-urlencoded'
-d 'account=995149'
-d 'terminal=99514901'
-d 'signValue=6b86b273ff34fce19d6b804eff5a3f5747ada4eaa22f1d49c01e52ddb7875b4b'
-d 'order_beginDate=2025-10-28 15:29:45'
-d 'order_endDate=2025-11-28 15:29:45'
Response Data
<?xml version="1.0" encoding="UTF-8"?>
<response>
<account>995149</account>
<terminal>99514901</terminal>
<signValue>EB7DBDF91F14C9453B73DD69029C830CA99BDAB7AF6447BFFB49837F0024F202</signValue>
<results>00</results>
<details>Success</details>
<count>2</count>
<totalpages>1</totalpages>
<pages>1</pages>
<orderInfo>
<account>995149</account>
<terminal>99514901</terminal>
<payment_id>240527141641780010530</payment_id>
<order_number>test20240527141619</order_number>
<order_currency>HKD</order_currency>
<order_amount>0.10</order_amount>
<methods>Credit Card</methods>
<payment_dateTime>2024-05-27 14:16:41</payment_dateTime>
</orderInfo>
<orderInfo>
<account>995149</account>
<terminal>99514901</terminal>
<payment_id>240527091159911010575</payment_id>
<order_number>test20240527091152</order_number>
<order_currency>HKD</order_currency>
<order_amount>0.10</order_amount>
<methods>Credit Card</methods>
<payment_dateTime>2024-05-27 09:12:00</payment_dateTime>
</orderInfo>
</response>
Statistics on successful orders
| Parameter | Description |
|---|---|
orderInfo | Node information for successful orders. Multiple orderInfo entries indicate multiple successful orders. |
View full list of successful order query response parameters →