请求多次分账
微信订单支付成功后,服务商代子商户发起分账请求,将结算后的钱分到分账接收方。多次分账请求仅会按照传入的分账接收方进行分账,不会对剩余的金额进行任何操作。故操作成功后,在待分账金额不等于零时,订单依旧能够再次进行分账。● 多次分账,可以将本商户作为分账接收方直接传入,实现释放资金给本商户的功能。 官方文档
js
wxpay.v2.secapi.pay.multiprofitsharing.post({
mch_id,
sub_mch_id,
appid,
sub_appid,
nonce_str,
sign_type,
transaction_id,
out_order_no,
receivers,
}, { 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,
})
)