Skip to content

个人收款-查询批量结算信息

查询个人收款批量结算信息

请求参数类型描述
settle_batch_nostring微信支付结算批次单号
php
$instance->v3->platsolution->ecommerce->settle->prepaySettleOrders->_settle_batch_no_->getAsync([
  'settle_batch_no' => '123685544886666',
])
->then(static function(\Psr\Http\Message\ResponseInterface $response) {
  print_r(json_decode((string) $response->getBody(), true));
})
->wait();
php
$instance->chain('v3/platsolution/ecommerce/settle/prepay-settle-orders/{settle_batch_no}')->getAsync([
  'settle_batch_no' => '123685544886666',
])
->then(static function(\Psr\Http\Message\ResponseInterface $response) {
  print_r(json_decode((string) $response->getBody(), true));
})
->wait();
php
$instance['v3/platsolution/ecommerce/settle/prepay-settle-orders/{settle_batch_no}']->getAsync([
  'settle_batch_no' => '123685544886666',
])
->then(static function(\Psr\Http\Message\ResponseInterface $response) {
  print_r(json_decode((string) $response->getBody(), true));
})
->wait();
php
$response = $instance->v3->platsolution->ecommerce->settle->prepaySettleOrders->_settle_batch_no_->get([
  'settle_batch_no' => '123685544886666',
]);
print_r(json_decode((string) $response->getBody(), true));
php
$response = $instance->chain('v3/platsolution/ecommerce/settle/prepay-settle-orders/{settle_batch_no}')->get([
  'settle_batch_no' => '123685544886666',
]);
print_r(json_decode((string) $response->getBody(), true));
php
$response = $instance['v3/platsolution/ecommerce/settle/prepay-settle-orders/{settle_batch_no}']->get([
  'settle_batch_no' => '123685544886666',
]);
print_r(json_decode((string) $response->getBody(), true));
返回字典类型描述
out_settle_batch_nostring商户结算批次单号
settle_batch_nostring微信支付结算批次单号
individual_auth_idstring商品单个人收款方受理授权ID
descriptionstring收款方描述
statestring批次状态
trade_scenariostring交易场景
RECOMMERCE 枚举值
create_timestring批次创建时间
finish_timestring批次完成时间

参阅 官方文档

Published on the GitHub by TheNorthMemory