Query Settled Funds
Update Time:2025.02.20This API helps query the details of settled funds.
|
API intro
Request Url: https://apihk.mch.weixin.qq.com/pay/settlementquery
Request Method: POST
Certificate Requirements: No certificate is required.
Applicable Object: Common mode Institutional mode
Request Parameters
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 Pay |
Sub Merchant ID | sub_mch_id | String(32) | Yes | The merchant ID assigned by WeChat Pay for the sub-merchant |
Settlement Status | usetag | int | Yes | Indicates the fund has been settled or is still outstanding: |
Random String | nonce_str | String(32) | Yes | A random string of less than 32 chars. For more information, see Random String Algorithm. |
Offset | offset | int | Yes | Returned query data starts from this offset value |
Max Records | limit | int | Yes | The number of returned records (generally less than 10) |
Start Date | date_start | String(14) | Yes | In the format of yyyyMMdd. For example, December 25, 2009 is expressed as 20091225 in the time zone (GMT+8). For more information, see Time Protocol. |
End Date | date_end | String(14) | Yes | In the format of yyyyMMdd. For example, December 25, 2009 is expressed as 20091225 in the time zone (GMT+8). For more information, see Time Protocol. |
Whether to query funds-distribution settlement information | query_split | bool | No | or merchants with enabled funds-distribution permission, if query_split is true, the funds-distribution settlement field will be added to the returned information; merchants without funds-distribution permission do not need to check this field. |
Signature | sign | String(64) | Yes | Specifies a signature. For more information, see Signature Algorithm. |
Here is the sample code:
Return Data
If the request has failed, the following fields will be returned.
Name | ID | Type | Required | Description |
---|---|---|---|---|
Return Status Code | return_code | String(16) | Yes | SUCCESS/FAIL |
Return Data | return_msg | String(128) | NO | If returned data is not empty, the returned data is the error description of the following:
Example: Signature failure |
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 Pay |
Sub Merchant ID | sub_mch_id | String(32) | Yes | Specifies sub merchant ID assigned by WeChat Pay |
Random String | nonce_str | String(32) | Yes | Indicates a random string of less than 32 chars |
Service Result | result_code | String(16) | Yes | SUCCESS/FAIL |
Error Code | err_code | String(32) | No | ORDERNOTEXIST: Order does not exist |
Error Code Description | err_code_des | String(128) | No | Describes result data |
Return Data Lines | record_num | String(10) | Yes | Indicates the number of lines of return data. And the following fields would be returned when result_code is SUCCESS and record_num is not 0. |
The following fields will be returned when result_code is SUCCESS. In case of multiple records, the data will be repeated.
Name | ID | Type | Required | Description |
---|---|---|---|---|
Foreign Payment Batch Number | fbatchno | String(32) | Yes | Indicates the batch number of foreign payment |
Settlement Date | date_settlement | String(14) | Yes | In the format of yyyyMMdd. For example, December 25, 2009 is expressed as 20091225 in the time zone (GMT+8). |
Transaction Start Date | date_start | String(14) | Yes | In the format of yyyyMMdd. For example, December 25, 2009 is expressed as 20091225 in the time zone (GMT+8). |
Trasanction End Date | date_end | String(14) | Yes | In the format of yyyyMMdd. For example, December 25, 2009 is expressed as 20091225 in the time zone (GMT+8). |
Remit Amount | settlement_fee | String(32) | Yes | Priced in foreign currency at the minimum trading unit |
Non-Remit Amount | unsettlement_fee | String(32) | Yes | Priced in foreign currency at the minimum trading unit |
Settlement Currency | settlementfee_type | String(8) | Yes | Comply with ISO 4217 standards and use CNY for Chinese currency by default. |
Payment Amount | pay_fee | int | Yes | Priced in foreign currency at the minimum trading unit |
Refund Amount | refund_fee | int | Yes | Priced in foreign currency at the minimum trading unit |
Net Payment Amount | pay_net_fee | int | Yes | Priced in foreign currency at the minimum trading unit |
Charge Amount | poundage_fee | int | Yes | Priced in foreign currency at the minimum trading unit |
Funds-distribution transfer amount | split_settlement_fee | int | No | foreign currency price, in the minimum unit of foreign currency. The information will be returned when the merchant enables funds-distribution permission, [query_split=true], and [usetag=1]. |
Not-transferred amount in funds-distribution | split_unsettlement_fee | int | No | Not-transferred amount in funds-distribution: foreign currency price, in the minimum unit of foreign currency. The information will be returned when the merchant enables funds-distribution permission, [query_split=true], and [usetag=2]. |
Example: