Skip to content

解冻剩余资金

不需要进行分账的订单,可直接调用本接口将订单的金额全部解冻给特约商户

请求参数类型描述
jsonobject声明请求的JSON数据结构
sub_mchidstring子商户号
transaction_idstring微信订单号
out_order_nostring商户分账单号
descriptionstring分账描述
php
$instance->v3->profitsharing->orders->unfreeze->postAsync([
  'json' => [
    'sub_mchid' => '1900000109',
    'transaction_id' => '4208450740201411110007820472',
    'out_order_no' => 'P20150806125346',
    'description' => '解冻全部剩余资金',
  ],
])
->then(static function(\Psr\Http\Message\ResponseInterface $response) {
  print_r(json_decode((string) $response->getBody(), true));
})
->wait();
php
$instance->chain('v3/profitsharing/orders/unfreeze')->postAsync([
  'json' => [
    'sub_mchid' => '1900000109',
    'transaction_id' => '4208450740201411110007820472',
    'out_order_no' => 'P20150806125346',
    'description' => '解冻全部剩余资金',
  ],
])
->then(static function(\Psr\Http\Message\ResponseInterface $response) {
  print_r(json_decode((string) $response->getBody(), true));
})
->wait();
php
$instance['v3/profitsharing/orders/unfreeze']->postAsync([
  'json' => [
    'sub_mchid' => '1900000109',
    'transaction_id' => '4208450740201411110007820472',
    'out_order_no' => 'P20150806125346',
    'description' => '解冻全部剩余资金',
  ],
])
->then(static function(\Psr\Http\Message\ResponseInterface $response) {
  print_r(json_decode((string) $response->getBody(), true));
})
->wait();
php
$response = $instance->v3->profitsharing->orders->unfreeze->post([
  'json' => [
    'sub_mchid' => '1900000109',
    'transaction_id' => '4208450740201411110007820472',
    'out_order_no' => 'P20150806125346',
    'description' => '解冻全部剩余资金',
  ],
]);
print_r(json_decode((string) $response->getBody(), true));
php
$response = $instance->chain('v3/profitsharing/orders/unfreeze')->post([
  'json' => [
    'sub_mchid' => '1900000109',
    'transaction_id' => '4208450740201411110007820472',
    'out_order_no' => 'P20150806125346',
    'description' => '解冻全部剩余资金',
  ],
]);
print_r(json_decode((string) $response->getBody(), true));
php
$response = $instance['v3/profitsharing/orders/unfreeze']->post([
  'json' => [
    'sub_mchid' => '1900000109',
    'transaction_id' => '4208450740201411110007820472',
    'out_order_no' => 'P20150806125346',
    'description' => '解冻全部剩余资金',
  ],
]);
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