Revoke Order
Update Time:2025.02.20When a payment transaction isn't successfully returned or the payment system times out, this API is called to cancel the transaction. After revoking, the successful order will be refunded, while the failed order will be closed.
|
API intro
Request Url: https://apihk.mch.weixin.qq.com/secapi/pay/reverse
Request method: POST
Certificate Requirements:certificate is required.
Applicable object: Common mode Institutional mode
Parameter Settings
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 Official Account ID assigned by WeChat |
Sub Merchant ID | sub_mch_id | string(32) | Yes | Specifies merchant ID assigned by WeChat Payment |
WeChat Order Number | transaction_id | string(32) | No | WeChat order number is preferred |
Merchant Order Number | out_trade_no | string(32) | Yes | out_trade_no is an internal order number within the Merchant’s system. |
Random string | nonce_str | string(32) | Yes | 32 characters or fewer or fewer. For more information, see Random string Algorithm |
Signature | sign | string(64) | Yes | For more information, see Signature Algorithm |
Sign type | sign_type | string(32) | No | Currently HMAC-SHA256 and MD5 are supported, default is MD5. This parameter must be submitted if HMAC-SHA256 is chosen |
Example:
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 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 |
---|---|---|---|---|
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 |
Signature | sign | string(64) | Yes | For more information, see Signature |
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 |
Error Code Description | err_code_des | string(128) | No | The detailed description of error returned. |
Recall Requirement | recall | string(1) | Yes | Specifies whether recalling the Revoke Order API is required or not, |
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 Query Order API again |
INVALID_TRANSACTIONID | Invalid transaction_id | Requested parameters are not correct | Parameter error. Check transaction_id again. |
PARAM_ERROR | Parameter error | Requested parameters are not correct | Parameter error. Check parameters again. |
REQUIRE_POST_METHOD | Use post method | Data is not transferred by post | Check whether data is submitted via POST method |
SIGNERROR | Signature error | Incorrect signature result | Check whether signature parameter and method comply with signature algorithm requirements |
INVALID_REQUEST | Invalid request | Merchant’s backend system issue | Please check the request parameters, whether the parameters are correct or whether the right certificate is used |
REVERSE_EXPIRE | The order is out of reverse limit date | The Revoke API should be called within 7 days | Please check whether the order is in 7 days. If you truly want to revoke the order, please refund it. |
USERPAYING | User is paying | Transaction in paying progress cannot be revoked | Please retry it later |