请求分账
微信订单支付成功后,由服务商发起分账请求,将结算后的资金分给分账接收方。
请求参数 | 类型 | 描述 |
---|---|---|
json | object | 声明请求的JSON 数据结构 |
brand_mchid | string | 品牌主商户号 |
sub_mchid | string | 子商户号 |
appid | string | 公众账号ID |
sub_appid | string | 子商户公众账号ID |
transaction_id | string | 微信订单号 |
out_order_no | string | 商户分账单号 |
receivers | object[] | 分账接收方列表 |
type | string | 分账接收方类型 |
account | string | 分账接收方账号 |
amount | integer | 分账金额 |
description | string | 分账描述 |
name | string | 分账个人接收方姓名 |
finish | boolean | 是否分账完成 |
headers | object | 声明请求的头参数 |
Wechatpay-Serial | string | 平台公钥ID/平台公钥证书序列号 |
php
$instance->v3->brand->profitsharing->orders->postAsync([
'json' => [
'brand_mchid' => '1900000108',
'sub_mchid' => '1900000109',
'appid' => 'wx8888888888888888',
'sub_appid' => 'wx8888888888888889',
'transaction_id' => '4208450740201411110007820472',
'out_order_no' => 'P20150806125346',
'receivers' => [[
'type' => 'MERCHANT_ID',
'account' => '1900000109',
'amount' => 190,
'description' => '1900000109分给商户1900000110',
'name' => 'hu89ohu89ohu89o',
],],
'finish' => true,
],
'headers' => [
'Wechatpay-Serial' => 'PUB_KEY_ID_0114232134912410000000000000',
],
])
->then(static function(\Psr\Http\Message\ResponseInterface $response) {
print_r(json_decode((string) $response->getBody(), true));
})
->wait();
php
$instance->chain('v3/brand/profitsharing/orders')->postAsync([
'json' => [
'brand_mchid' => '1900000108',
'sub_mchid' => '1900000109',
'appid' => 'wx8888888888888888',
'sub_appid' => 'wx8888888888888889',
'transaction_id' => '4208450740201411110007820472',
'out_order_no' => 'P20150806125346',
'receivers' => [[
'type' => 'MERCHANT_ID',
'account' => '1900000109',
'amount' => 190,
'description' => '1900000109分给商户1900000110',
'name' => 'hu89ohu89ohu89o',
],],
'finish' => true,
],
'headers' => [
'Wechatpay-Serial' => 'PUB_KEY_ID_0114232134912410000000000000',
],
])
->then(static function(\Psr\Http\Message\ResponseInterface $response) {
print_r(json_decode((string) $response->getBody(), true));
})
->wait();
php
$instance['v3/brand/profitsharing/orders']->postAsync([
'json' => [
'brand_mchid' => '1900000108',
'sub_mchid' => '1900000109',
'appid' => 'wx8888888888888888',
'sub_appid' => 'wx8888888888888889',
'transaction_id' => '4208450740201411110007820472',
'out_order_no' => 'P20150806125346',
'receivers' => [[
'type' => 'MERCHANT_ID',
'account' => '1900000109',
'amount' => 190,
'description' => '1900000109分给商户1900000110',
'name' => 'hu89ohu89ohu89o',
],],
'finish' => true,
],
'headers' => [
'Wechatpay-Serial' => 'PUB_KEY_ID_0114232134912410000000000000',
],
])
->then(static function(\Psr\Http\Message\ResponseInterface $response) {
print_r(json_decode((string) $response->getBody(), true));
})
->wait();
php
$response = $instance->v3->brand->profitsharing->orders->post([
'json' => [
'brand_mchid' => '1900000108',
'sub_mchid' => '1900000109',
'appid' => 'wx8888888888888888',
'sub_appid' => 'wx8888888888888889',
'transaction_id' => '4208450740201411110007820472',
'out_order_no' => 'P20150806125346',
'receivers' => [[
'type' => 'MERCHANT_ID',
'account' => '1900000109',
'amount' => 190,
'description' => '1900000109分给商户1900000110',
'name' => 'hu89ohu89ohu89o',
],],
'finish' => true,
],
'headers' => [
'Wechatpay-Serial' => 'PUB_KEY_ID_0114232134912410000000000000',
],
]);
print_r(json_decode((string) $response->getBody(), true));
php
$response = $instance->chain('v3/brand/profitsharing/orders')->post([
'json' => [
'brand_mchid' => '1900000108',
'sub_mchid' => '1900000109',
'appid' => 'wx8888888888888888',
'sub_appid' => 'wx8888888888888889',
'transaction_id' => '4208450740201411110007820472',
'out_order_no' => 'P20150806125346',
'receivers' => [[
'type' => 'MERCHANT_ID',
'account' => '1900000109',
'amount' => 190,
'description' => '1900000109分给商户1900000110',
'name' => 'hu89ohu89ohu89o',
],],
'finish' => true,
],
'headers' => [
'Wechatpay-Serial' => 'PUB_KEY_ID_0114232134912410000000000000',
],
]);
print_r(json_decode((string) $response->getBody(), true));
php
$response = $instance['v3/brand/profitsharing/orders']->post([
'json' => [
'brand_mchid' => '1900000108',
'sub_mchid' => '1900000109',
'appid' => 'wx8888888888888888',
'sub_appid' => 'wx8888888888888889',
'transaction_id' => '4208450740201411110007820472',
'out_order_no' => 'P20150806125346',
'receivers' => [[
'type' => 'MERCHANT_ID',
'account' => '1900000109',
'amount' => 190,
'description' => '1900000109分给商户1900000110',
'name' => 'hu89ohu89ohu89o',
],],
'finish' => true,
],
'headers' => [
'Wechatpay-Serial' => 'PUB_KEY_ID_0114232134912410000000000000',
],
]);
print_r(json_decode((string) $response->getBody(), true));
返回字典 | 类型 | 描述 |
---|---|---|
brand_mchid | string | 品牌主商户号 |
sub_mchid | string | 子商户号 |
transaction_id | string | 微信订单号 |
out_order_no | string | 商户分账单号 |
order_id | string | 微信分账单号 |
receivers | object[] | 分账接收方列表 |
type | string | 接收方类型 |
account | string | 接收方账号 |
amount | number | 分账金额 |
description | string | 分账描述 |
result | string | 分账结果 |
finish_time | string | 分账完成时间 |
fail_reason | string | 分账失败原因 |
detail_id | string | 分账明细单号 |
status | string | 分账单状态 |
参阅 官方文档
查询分账结果
发起分账请求后,可调用此接口查询分账结果。发起分账完结请求后,可调用此接口查询分账完结的结果。
请求参数 | 类型 | 描述 |
---|---|---|
query | object | 声明请求的查询参数 |
sub_mchid | string | 子商户号 |
transaction_id | string | 微信订单号 |
out_order_no | string | 商户分账单号 |
php
$instance->v3->brand->profitsharing->orders->getAsync([
'query' => [
'sub_mchid' => '1900000109',
'transaction_id' => '4208450740201411110007820472',
'out_order_no' => 'P20150806125346',
],
])
->then(static function(\Psr\Http\Message\ResponseInterface $response) {
print_r(json_decode((string) $response->getBody(), true));
})
->wait();
php
$instance->chain('v3/brand/profitsharing/orders')->getAsync([
'query' => [
'sub_mchid' => '1900000109',
'transaction_id' => '4208450740201411110007820472',
'out_order_no' => 'P20150806125346',
],
])
->then(static function(\Psr\Http\Message\ResponseInterface $response) {
print_r(json_decode((string) $response->getBody(), true));
})
->wait();
php
$instance['v3/brand/profitsharing/orders']->getAsync([
'query' => [
'sub_mchid' => '1900000109',
'transaction_id' => '4208450740201411110007820472',
'out_order_no' => 'P20150806125346',
],
])
->then(static function(\Psr\Http\Message\ResponseInterface $response) {
print_r(json_decode((string) $response->getBody(), true));
})
->wait();
php
$response = $instance->v3->brand->profitsharing->orders->get([
'query' => [
'sub_mchid' => '1900000109',
'transaction_id' => '4208450740201411110007820472',
'out_order_no' => 'P20150806125346',
],
]);
print_r(json_decode((string) $response->getBody(), true));
php
$response = $instance->chain('v3/brand/profitsharing/orders')->get([
'query' => [
'sub_mchid' => '1900000109',
'transaction_id' => '4208450740201411110007820472',
'out_order_no' => 'P20150806125346',
],
]);
print_r(json_decode((string) $response->getBody(), true));
php
$response = $instance['v3/brand/profitsharing/orders']->get([
'query' => [
'sub_mchid' => '1900000109',
'transaction_id' => '4208450740201411110007820472',
'out_order_no' => 'P20150806125346',
],
]);
print_r(json_decode((string) $response->getBody(), true));
返回字典 | 类型 | 描述 |
---|---|---|
sub_mchid | string | 子商户号 |
transaction_id | string | 微信订单号 |
out_order_no | string | 商户分账单号 |
order_id | string | 微信分账单号 |
status | string | 分账单状态PROCESSING | FINISHED 枚举值之一 |
receivers | object[] | 分账接收方列表 |
type | string | 分账接收方类型MERCHANT_ID | PERSONAL_OPENID | PERSONAL_SUB_OPENID 枚举值之一 |
account | string | 分账接收方账号 |
amount | integer | 分账金额 |
description | string | 分账描述 |
result | string | 分账结果PENDING | SUCEESS | CLOSED 枚举值之一 |
finish_time | string | 完成时间 |
fail_reason | string | 分账失败原因ACCOUNT_ABNORMAL | NO_RELATION | RECEIVER_HIGH_RISK 枚举值之一 |
detail_id | string | 分账明细单号 |
finish_amount | integer | 分账完结金额 |
finish_description | string | 分账完结描述 |
参阅 官方文档