解冻剩余资金
不需要进行分账的订单,可直接调用本接口将订单的金额全部解冻给特约商户
请求参数 | 类型 | 描述 |
---|---|---|
json | object | 声明请求的JSON 数据结构 |
sub_mchid | string | 子商户号 |
transaction_id | string | 微信订单号 |
out_order_no | string | 商户分账单号 |
description | string | 分账描述 |
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_mchid | string | 子商户号 |
transaction_id | string | 微信订单号 |
out_order_no | string | 商户分账单号 |
order_id | string | 微信分账单号 |
state | string | 分账单状态 |
receivers | object[] | 分账接收方列表 |
amount | integer | 分账金额 |
description | string | 分账描述 |
type | string | 分账接收方类型 |
account | string | 分账接收方帐号 |
result | string | 分账结果 |
fail_reason | string | 分账失败原因 |
detail_id | string | 分账明细单号 |
create_time | string | 分账创建时间 |
finish_time | string | 分账完成时间 |
参阅 官方文档