Query Refund
Update Time:2025.02.20After submitting Submit Refund, this API can be called to check the refund status. After submitting a refund, there may be a delay in processing the refund: 20 minutes for refunding to Balance and 3 working days for refunding to a bank card.
|
API intro
Request Url: https://apihk.mch.weixin.qq.com/pay/refundquery
Request Method: POST
Certificate Requirements: No certificate is required.
Applicable Object: Common mode Institutional mode
Request Parameters
Note: All subscripts such as $n are started from 0.
Name | ID | Type | Required | Description |
---|---|---|---|---|
Official Account ID | appid | String(32) | Yes | Specifies 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 |
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 |
WeChat Order Number | transaction_id | String(28) | Choose one to submit | Specifies the WeChat payment order id number |
Merchant Order Number | out_trade_no | String(32) | Specifies an internal order number created by the Merchant’s system | |
Merchant Refund Number | out_refund_no | String(32) | Merchant Refund Number | |
WeChat Refund Number | refund_id | String(28) | WeChat Refund Number | |
Offset value | offset | int | NO | The offset value when partial refund records are more than 10 |
Here is the sample code:
Return Data
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 return_code is SUCCESS, return data will also include the following fields:
Name | ID | Type | Required | Description |
---|---|---|---|---|
Service Result | result_code | String(16) | Yes | SUCCESS or FAIL |
Error Code | err_code | String(32) | No | For more information, please refer to error code list |
Error Description | err_code_des | String(32) | No | Describes result data |
Official Account ID | appid | String(32) | Yes | Specifies 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 | 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(28) | Yes | 32 characters or fewer |
Signature | sign | String(64) | Yes | Specifies a signature. For more information, see Signature Algorithm. |
WeChat Order Number | transaction_id | String(32) | Yes | Specifies the WeChat payment order id number |
Merchant Order Number | out_trade_no | String(32) | Yes | Specifies an internal order number created by the Merchant’s system |
Total Amount | total_fee | int | Yes | Specifies the total order amount expressed in cents and must be an integer. For more information, see Payment Amount |
Order Currency Type | fee_type | String(8) | Yes | ISO-4217 standard compliant and be described by three characters based code. For more information, see Currency Type. |
Cash Payment Amount | cash_fee | int | Yes | Specifies the cash payment amount expressed in cents and must be an integer. For more information, see Payment Amount |
Payment Currency Type | cash_fee_type | String(8) | No | Complies with ISO 4217 standards and uses CNY (Chinese yuan) by default. For more information, see Currency Type. |
Total refund count | total_refund_count | int | No | The total refund records count for the current transaction, will only return when offset is submitted |
Refund Count | refund_count | int | Yes | Specifies returned recorded refund counts |
Merchant Refund Number | out_refund_no_$n | String(32) | Yes | Merchant Refund Number |
WeChat Refund Number | refund_id_$n | String(32) | Yes | WeChat Refund Number |
Refund Channel | refund_channel_$n | String(16) | No | ORIGINAL: Refund to original payment account |
Refund Amount | refund_fee_$n | int | Yes | Specifies the total refund amount expressed in cents and must be an integer. For more information, see Payment Amount |
Refund Status | refund_status_$n | String(16) | Yes | Refund Status: |
Account Received Refund | refund_recv_accout_$n | String(64) | Yes | The account which finally received the refund: |
Refund Success Time | refund_success_time_$n | String(20) | No | Refund success time, only returned when the refund the successfully complete. |
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 |
---|---|---|---|
SYSTEMERROR | API return error | System timed out | Try to call the API again |
REFUNDNOTEXIST | Failed to query refund | The refund number is wrong or the order status is not in the refund process | Please check whether the refund number or transaction ID is correct or whether the order is paid or in refund process. |
INVALID_TRANSACTIONID | Invalid transaction_id | Requested parameters are not correct | Incorrect request parameters. Check whether the original transaction ID exists or whether data failed to be returned from the payment interface. |
PARAM_ERROR | Parameter error | Requested parameters are not correct | Incorrect request parameters. Check parameters and call the Submit Refund API again. |
APPID_NOT_EXIST | APPID DOES NOT EXIST | No APPID in this parameter | Check whether provided APPID is correct |
MCHID_NOT_EXIST | MCHID DOES NOT EXIST | No MCHID in this parameter | Check whether provided MCHID is correct |
APPID_MCHID_NOT_MATCH | appid does not match mch_id | appid does not match mch_id | Check whether appid belongs to the associated mch_id |
REQUIRE_POST_METHOD | Use post method | Data is not transferred via POST method | Check whether data is submitted by POST method |
SIGNERROR | Signature error | Incorrect signature result | Check whether signature parameter and method comply with signature algorithm requirements |
XML_FORMAT_ERROR | INVALID XML FORMAT | INVALID XML FORMAT | Check whether XML parameters are in correct format |