完结分账
1、不需要进行分账的订单,可直接调用本接口将订单的金额全部解冻给特约商户 2、调用多次分账接口后,需要解冻剩余资金时,调用本接口将剩余的分账金额全部解冻给特约商户 3、已调用请求单次分账后,剩余待分账金额为零,不需要再调用此接口。 官方文档
js
wxpay.v2.secapi.pay.profitsharingfinish.post({
mch_id,
sub_mch_id,
appid,
nonce_str,
sign_type,
transaction_id,
out_order_no,
description,
}, { security })
.then(
({
data: {
sub_appid,
sub_mch_id,
return_code,
return_msg,
appid,
mch_id,
nonce_str,
sign,
result_code,
err_code,
err_code_des,
transaction_id,
out_order_no,
order_id,
},
}) => ({
sub_appid,
sub_mch_id,
return_code,
return_msg,
appid,
mch_id,
nonce_str,
sign,
result_code,
err_code,
err_code_des,
transaction_id,
out_order_no,
order_id,
})
)