下载资金账单
商户可以通过该接口下载自2017年6月1日起 的历史资金流水账单。 官方付款码文档 官方JSAPI文档 官方NATIVE文档 官方APP文档 官方H5文档 官方小程序支付文档
js
const { createWriteStream } = require('fs')
wxpay.v2.pay.downloadfundflow.post({
appid,
mch_id,
sub_appid,
sub_mch_id,
nonce_str,
sign_type,
bill_date,
account_type,
tar_type,
}, { security, responseType, transformResponse, })
.then(
({
data,
}) => {
data.pipe(createWriteStream('./downloaded.csv.gz'))
}
)