Skip to content

请求分账

微信订单支付成功后,服务商代特约商户发起分账请求,将结算后的资金分到分账接收方

请求参数类型描述
jsonobject声明请求的JSON数据结构
sub_mchidstring子商户号
appidstring应用ID
sub_appidstring子商户应用ID
transaction_idstring微信订单号
out_order_nostring商户分账单号
receiversobject[]分账接收方列表
typestring分账接收方类型
accountstring分账接收方帐号
namestring分账个人接收方姓名
amountinteger分账金额
descriptionstring分账描述
unfreeze_unsplitboolean是否解冻剩余未分资金
headersobject声明请求的头参数
Wechatpay-Serialstring平台公钥ID/平台公钥证书序列号
php
$instance->v3->profitsharing->orders->postAsync([
  'json' => [
    'sub_mchid' => '1900000109',
    'appid' => 'wx8888888888888888',
    'sub_appid' => 'wx8888888888888889',
    'transaction_id' => '4208450740201411110007820472',
    'out_order_no' => 'P20150806125346',
    'receivers' => [[
      'type' => 'MERCHANT_ID',
      'account' => '86693852',
      'name' => 'hu89ohu89ohu89o',
      'amount' => 888,
      'description' => '分给商户A',
    ],],
    'unfreeze_unsplit' => 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/profitsharing/orders')->postAsync([
  'json' => [
    'sub_mchid' => '1900000109',
    'appid' => 'wx8888888888888888',
    'sub_appid' => 'wx8888888888888889',
    'transaction_id' => '4208450740201411110007820472',
    'out_order_no' => 'P20150806125346',
    'receivers' => [[
      'type' => 'MERCHANT_ID',
      'account' => '86693852',
      'name' => 'hu89ohu89ohu89o',
      'amount' => 888,
      'description' => '分给商户A',
    ],],
    'unfreeze_unsplit' => 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/profitsharing/orders']->postAsync([
  'json' => [
    'sub_mchid' => '1900000109',
    'appid' => 'wx8888888888888888',
    'sub_appid' => 'wx8888888888888889',
    'transaction_id' => '4208450740201411110007820472',
    'out_order_no' => 'P20150806125346',
    'receivers' => [[
      'type' => 'MERCHANT_ID',
      'account' => '86693852',
      'name' => 'hu89ohu89ohu89o',
      'amount' => 888,
      'description' => '分给商户A',
    ],],
    'unfreeze_unsplit' => 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->profitsharing->orders->post([
  'json' => [
    'sub_mchid' => '1900000109',
    'appid' => 'wx8888888888888888',
    'sub_appid' => 'wx8888888888888889',
    'transaction_id' => '4208450740201411110007820472',
    'out_order_no' => 'P20150806125346',
    'receivers' => [[
      'type' => 'MERCHANT_ID',
      'account' => '86693852',
      'name' => 'hu89ohu89ohu89o',
      'amount' => 888,
      'description' => '分给商户A',
    ],],
    'unfreeze_unsplit' => true,
  ],
  'headers' => [
    'Wechatpay-Serial' => 'PUB_KEY_ID_0114232134912410000000000000',
  ],
]);
print_r(json_decode((string) $response->getBody(), true));
php
$response = $instance->chain('v3/profitsharing/orders')->post([
  'json' => [
    'sub_mchid' => '1900000109',
    'appid' => 'wx8888888888888888',
    'sub_appid' => 'wx8888888888888889',
    'transaction_id' => '4208450740201411110007820472',
    'out_order_no' => 'P20150806125346',
    'receivers' => [[
      'type' => 'MERCHANT_ID',
      'account' => '86693852',
      'name' => 'hu89ohu89ohu89o',
      'amount' => 888,
      'description' => '分给商户A',
    ],],
    'unfreeze_unsplit' => true,
  ],
  'headers' => [
    'Wechatpay-Serial' => 'PUB_KEY_ID_0114232134912410000000000000',
  ],
]);
print_r(json_decode((string) $response->getBody(), true));
php
$response = $instance['v3/profitsharing/orders']->post([
  'json' => [
    'sub_mchid' => '1900000109',
    'appid' => 'wx8888888888888888',
    'sub_appid' => 'wx8888888888888889',
    'transaction_id' => '4208450740201411110007820472',
    'out_order_no' => 'P20150806125346',
    'receivers' => [[
      'type' => 'MERCHANT_ID',
      'account' => '86693852',
      'name' => 'hu89ohu89ohu89o',
      'amount' => 888,
      'description' => '分给商户A',
    ],],
    'unfreeze_unsplit' => true,
  ],
  'headers' => [
    'Wechatpay-Serial' => 'PUB_KEY_ID_0114232134912410000000000000',
  ],
]);
print_r(json_decode((string) $response->getBody(), true));
返回字典类型描述
sub_mchidstring子商户号
transaction_idstring微信订单号
out_order_nostring商户分账单号
order_idstring微信分账单号
statestring分账单状态
receiversobject[]分账接收方列表
amountinteger分账金额
descriptionstring分账描述
typestring分账接收方类型
accountstring分账接收方帐号
resultstring分账结果
fail_reasonstring分账失败原因
detail_idstring分账明细单号
create_timestring分账创建时间
finish_timestring分账完成时间

参阅 官方文档

Published on the GitHub by TheNorthMemory