Skip to content

请求分账

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

请求参数类型描述
base_uristring声明接入点https://apihk.mch.weixin.qq.com/(香港接入)
jsonobject声明请求的JSON数据结构
sub_mchidstring子商户号
appidstring应用ID
sub_appidstring子商户应用ID
transaction_idstring微信订单号
out_order_nostring商户分账单号
receiversobject[]分账接收方列表
currencystring分账币种
typestring分账接收方类型
accountstring分账接收方帐号
namestring分账个人接收方姓名
authorizedboolean是否已经获取用户实名信息授权
amountinteger分账金额
descriptionstring分账描述
unfreeze_unsplitboolean是否解冻剩余未分资金
php
$instance->v3->global->profitSharing->orders->postAsync([
  'base_uri' => 'https://apihk.mch.weixin.qq.com/', // 接入点(香港接入)
  'json' => [
    'sub_mchid' => '1900000109',
    'appid' => 'wx8888888888888888',
    'sub_appid' => 'wx8888888888888889',
    'transaction_id' => '4208450740201411110007820472',
    'out_order_no' => 'P20150806125346',
    'receivers' => [[
      'currency' => 'CNY',
      'type' => 'MERCHANT_ID',
      'account' => '86693852',
      'name' => 'hu89ohu89ohu89o',
      'authorized' => true,
      'amount' => 888,
      'description' => '分给商户A',
    ],],
    'unfreeze_unsplit' => true,
  ],
])
->then(static function(\Psr\Http\Message\ResponseInterface $response) {
  print_r(json_decode((string) $response->getBody(), true));
})
->wait();
php
$instance->chain('v3/global/profit-sharing/orders')->postAsync([
  'base_uri' => 'https://apihk.mch.weixin.qq.com/', // 接入点(香港接入)
  'json' => [
    'sub_mchid' => '1900000109',
    'appid' => 'wx8888888888888888',
    'sub_appid' => 'wx8888888888888889',
    'transaction_id' => '4208450740201411110007820472',
    'out_order_no' => 'P20150806125346',
    'receivers' => [[
      'currency' => 'CNY',
      'type' => 'MERCHANT_ID',
      'account' => '86693852',
      'name' => 'hu89ohu89ohu89o',
      'authorized' => true,
      'amount' => 888,
      'description' => '分给商户A',
    ],],
    'unfreeze_unsplit' => true,
  ],
])
->then(static function(\Psr\Http\Message\ResponseInterface $response) {
  print_r(json_decode((string) $response->getBody(), true));
})
->wait();
php
$instance['v3/global/profit-sharing/orders']->postAsync([
  'base_uri' => 'https://apihk.mch.weixin.qq.com/', // 接入点(香港接入)
  'json' => [
    'sub_mchid' => '1900000109',
    'appid' => 'wx8888888888888888',
    'sub_appid' => 'wx8888888888888889',
    'transaction_id' => '4208450740201411110007820472',
    'out_order_no' => 'P20150806125346',
    'receivers' => [[
      'currency' => 'CNY',
      'type' => 'MERCHANT_ID',
      'account' => '86693852',
      'name' => 'hu89ohu89ohu89o',
      'authorized' => true,
      'amount' => 888,
      'description' => '分给商户A',
    ],],
    'unfreeze_unsplit' => true,
  ],
])
->then(static function(\Psr\Http\Message\ResponseInterface $response) {
  print_r(json_decode((string) $response->getBody(), true));
})
->wait();
php
$response = $instance->v3->global->profitSharing->orders->post([
  'base_uri' => 'https://apihk.mch.weixin.qq.com/', // 接入点(香港接入)
  'json' => [
    'sub_mchid' => '1900000109',
    'appid' => 'wx8888888888888888',
    'sub_appid' => 'wx8888888888888889',
    'transaction_id' => '4208450740201411110007820472',
    'out_order_no' => 'P20150806125346',
    'receivers' => [[
      'currency' => 'CNY',
      'type' => 'MERCHANT_ID',
      'account' => '86693852',
      'name' => 'hu89ohu89ohu89o',
      'authorized' => true,
      'amount' => 888,
      'description' => '分给商户A',
    ],],
    'unfreeze_unsplit' => true,
  ],
]);
print_r(json_decode((string) $response->getBody(), true));
php
$response = $instance->chain('v3/global/profit-sharing/orders')->post([
  'base_uri' => 'https://apihk.mch.weixin.qq.com/', // 接入点(香港接入)
  'json' => [
    'sub_mchid' => '1900000109',
    'appid' => 'wx8888888888888888',
    'sub_appid' => 'wx8888888888888889',
    'transaction_id' => '4208450740201411110007820472',
    'out_order_no' => 'P20150806125346',
    'receivers' => [[
      'currency' => 'CNY',
      'type' => 'MERCHANT_ID',
      'account' => '86693852',
      'name' => 'hu89ohu89ohu89o',
      'authorized' => true,
      'amount' => 888,
      'description' => '分给商户A',
    ],],
    'unfreeze_unsplit' => true,
  ],
]);
print_r(json_decode((string) $response->getBody(), true));
php
$response = $instance['v3/global/profit-sharing/orders']->post([
  'base_uri' => 'https://apihk.mch.weixin.qq.com/', // 接入点(香港接入)
  'json' => [
    'sub_mchid' => '1900000109',
    'appid' => 'wx8888888888888888',
    'sub_appid' => 'wx8888888888888889',
    'transaction_id' => '4208450740201411110007820472',
    'out_order_no' => 'P20150806125346',
    'receivers' => [[
      'currency' => 'CNY',
      'type' => 'MERCHANT_ID',
      'account' => '86693852',
      'name' => 'hu89ohu89ohu89o',
      'authorized' => true,
      'amount' => 888,
      'description' => '分给商户A',
    ],],
    'unfreeze_unsplit' => true,
  ],
]);
print_r(json_decode((string) $response->getBody(), true));
返回字典类型描述
sub_mchidstring子商户号
transaction_idstring微信订单号
out_order_nostring商户分账单号
order_idstring微信分账单号
statestring分账单状态
receiversobject[]分账接收方列表
currencystring分账币种
amountinteger分账金额
descriptionstring分账描述
typestring分账接收方类型
accountstring分账接收方帐号
resultstring分账结果
fail_reasonstring分账失败原因
create_timestring分账创建时间
finish_timestring分账完成时间
detail_idstring分账明细单号
detail_typestring分账明细类型
settlement_currencystring出资方结算币种
settlement_amountinteger出资方结算金额
rateinteger汇率值

参阅 官方文档

Published on the GitHub by TheNorthMemory