Query Order
Update Time:2025.02.20This API allows inquiry of all payment orders made from WeChat. After receiving a status code using this API, merchants can proceed with the next step in service logic.
|
API intro
Request Url: https://apihk.mch.weixin.qq.com/pay/orderquery
Request Method: POST
Certificate Requirements: No certificate is required.
Applicable Object: Common mode Institutional mode
Request Parameter
Field Name | ID | Type | Required | Description |
---|---|---|---|---|
Official Account ID | appid | String(32) | Yes | Specifies an Official Account ID assigned by WeChat |
Merchant ID | mch_id | String(32) | Yes | Specifies merchant ID assigned by WeChat Payment |
Sub Official Account ID | sub_appid | String(32) | No | Specifies an Sub Official Account ID assigned by WeChat. |
Sub Merchant ID | sub_mch_id | String(32) | Yes | Specifies Sub merchant ID assigned by WeChat Payment |
WeChat Order Number | transaction_id | String(32) | Choose one to submit | WeChat order number is preferred. Example: 4200000000002104083200000488 |
Merchant Order Number | out_trade_no | String(32) | Specifies an internal order number created by the Merchant's system. This field is required when transaction_id is not provided. | |
Random string | nonce_str | String(32) | Yes | 32 characters or fewer. For more information, see Random String Algorithm . |
Signature | sign | String(64) | Yes | Specifies a signature. For more information, see Signature Algorithm . |
Sign type | sign_type | String(32) | No | Currently HMAC-SHA256 and MD5 are supported, default is MD5. This field is only required when sign_type is HMAC-SHA256. |
Example:
Notes: Parameters are escaped in XML files and CDATA tags are used to illustrate that data is not parsed by XML parser.
Return Data
Field Name | ID | Type | Required | Description |
---|---|---|---|---|
Return Status Code | return_code | String(16) | Yes | Set to SUCCESS or FAIL |
Return Data | return_msg | String(128) | No | If not empty, this is the error description. If not empty, this is the error description |
If return_code is SUCCESS, return data will also include the following fields:
Field Name | ID | Type | Required | Description |
---|---|---|---|---|
Official Account ID | appid | String(32) | Yes | The Official Account ID submitted when calling the interface |
Merchant ID | mch_id | String(32) | Yes | The Merchant ID submitted when calling the interface |
Sub Official Account ID | sub_appid | String(32) | No | The Sub Official Account ID submitted when calling the interface |
Sub Merchant ID | sub_mch_id | String(32) | Yes | The Sub Merchant ID submitted when calling the interface |
Random String | nonce_str | String(32) | Yes | 32 characters or fewer |
Signature | sign | String(64) | Yes | Specifies a signature. For more information, see Signature Algorithm . |
Service Result | result_code | String(16) | Yes | Set to SUCCESS or FAIL |
Error Code | err_code | String(32) | No | Please refer to Error Codes |
Error Code Description | err_code_des | String(128) | No | The detailed description of error |
If both return_code, result_code and trade_state are SUCCESS, return data will also include the following fields. If trade_state is fail, only out_trade_no and attach will be returned.
Field Name | ID | Type | Required | Description |
---|---|---|---|---|
Device ID | device_info | String(32) | No | Specifies the ID of the terminal device with from which the Merchant submitted their order |
User Tag | openid | String(128) | Yes | Specifies the user id of the Payer provided by the WeChat system, it is unique to each appid instance. |
Follows Official Account or not | is_subscribe | String(1) | No | For users who pay for transactions related to an official account, the value in this field states whether the user is current following the official account |
Sub User Tag | sub_openid | String(128) | No | Specifies the user id of the Payer provided by the WeChat system, it is unique to each appid instance. |
Follows Sub Official Account or not | sub_is_subscribe | String(1) | Yes | For users who pay for transactions related to an sub official account, the value in this field states whether the user is current following the official account |
Transaction Type | trade_type | String(16) | Yes | The transaction type submitted. The value could be JSAPI, NATIVE, or APP. |
Transaction Status | trade_state | String(32) | Yes | 1.SUCCESS: Payment successful 2.REFUND: Order to be refunded 3.NOTPAY: Order not paid 4.CLOSED: Order closed 5.REVOKED: Order revoked 6.USERPAYING: Awaiting user topay 7.PAYERROR: Payment failed (payment status failed to be returned by bank or other reasons). Example: SUCCESS |
Payment Bank | bank_type | String(32) | Yes | String states bank_type. |
Total Amount | total_fee | int | Yes | Specifies the total amount for a transaction. For more information, see Payment Amount. |
Currency Type | fee_type | String(8) | No | Complies with ISO 4217 standards and uses 3 characters based code. For more information, see Currency Type. |
Cash Payment Amount | cash_fee | int | Yes | Specifies the total cash payment amount of a transaction. For more information, see Payment Amount. |
Cash Type | cash_fee_type | String(16) | Yes | Complies with ISO 4217 standards and uses CNY (Chinese yuan) by default. For more information, see Currency Type. |
WeChat Order Number | transaction_id | String(32) | Yes | Specifies the WeChat payment order id |
Merchant Order Number | out_trade_no | String(32) | Yes | Specifies the order number created within the Merchants' system, which is consistent with request. |
Merchant's Data Package | attach | String(128) | No | Specifies merchant's data package, which is returned as it is. |
Payment End Time | time_end | String(14) | Yes | Specifies transaction creation time in the format of yyyyMMddHHmmss, such as 20091225091010 for Dec 25, 2009 09:10:10. For more information, see Section 4.2 Time Protocol. |
Description of Trade Status | trade_state_desc | String(256) | Yes | Description of the current transaction status and guild for the next step. |
Exchange Rate | rate | String(16) | Yes | The value is 10 to the 8th power times of the exchange rate from foreign currency to RMB. For example, the exchange rate from foreign currency to RMB is 6.5, the value will be 650000000 |
Example:
Error Codes
Name | Description | Reason | Solution |
---|---|---|---|
ORDERNOTEXIST | This order does not exist. | This order number does not exist in the query system. | This API only helps query successfully paid transactions. The Merchant should check whether the provided transaction ID is correct. |
SYSTEMERROR | System error | Exception occurs when data is returned from backend. | This is caused by system error. Try to query again. |