请求售后服务分账(平台收付通)
js
wxpay.v3.ecommerce.profitsharing.afterSalesOrders.post({
sub_mchid,
transaction_id,
amount,
type,
scene,
refund_id,
})
.then(
({
data: {
sub_mchid,
transaction_id,
amount,
},
}) => ({
sub_mchid,
transaction_id,
amount,
})
)
查询售后服务分账结果(平台收付通)
js
wxpay.v3.ecommerce.profitsharing.afterSalesOrders.get({
params,
})
.then(
({
data: {
sub_mchid,
transaction_id,
amount,
result,
fail_reason,
finish_time,
},
}) => ({
sub_mchid,
transaction_id,
amount,
result,
fail_reason,
finish_time,
})
)