Skip to content

微信批次单号查询批次单

商户可以通过该接口查询转账批次单以及指定状态的转账明细单。

请求参数类型描述
batch_idstring微信批次单号
queryobject声明请求的查询参数
need_query_detailboolean是否查询转账明细单
offsetinteger请求资源起始位置
limitinteger最大资源条数
detail_statusstring明细状态
php
$instance->v3->transfer->batches->batchId->_batch_id_->getAsync([
  'batch_id' => '1030000071100999991182020050700019480001',
  'query' => [
    'need_query_detail' => true,
    'offset' => 0,
    'limit' => 20,
    'detail_status' => 'FAIL',
  ],
])
->then(static function(\Psr\Http\Message\ResponseInterface $response) {
  print_r(json_decode((string) $response->getBody(), true));
})
->wait();
php
$instance->chain('v3/transfer/batches/batch-id/{batch_id}')->getAsync([
  'batch_id' => '1030000071100999991182020050700019480001',
  'query' => [
    'need_query_detail' => true,
    'offset' => 0,
    'limit' => 20,
    'detail_status' => 'FAIL',
  ],
])
->then(static function(\Psr\Http\Message\ResponseInterface $response) {
  print_r(json_decode((string) $response->getBody(), true));
})
->wait();
php
$instance['v3/transfer/batches/batch-id/{batch_id}']->getAsync([
  'batch_id' => '1030000071100999991182020050700019480001',
  'query' => [
    'need_query_detail' => true,
    'offset' => 0,
    'limit' => 20,
    'detail_status' => 'FAIL',
  ],
])
->then(static function(\Psr\Http\Message\ResponseInterface $response) {
  print_r(json_decode((string) $response->getBody(), true));
})
->wait();
php
$response = $instance->v3->transfer->batches->batchId->_batch_id_->get([
  'batch_id' => '1030000071100999991182020050700019480001',
  'query' => [
    'need_query_detail' => true,
    'offset' => 0,
    'limit' => 20,
    'detail_status' => 'FAIL',
  ],
]);
print_r(json_decode((string) $response->getBody(), true));
php
$response = $instance->chain('v3/transfer/batches/batch-id/{batch_id}')->get([
  'batch_id' => '1030000071100999991182020050700019480001',
  'query' => [
    'need_query_detail' => true,
    'offset' => 0,
    'limit' => 20,
    'detail_status' => 'FAIL',
  ],
]);
print_r(json_decode((string) $response->getBody(), true));
php
$response = $instance['v3/transfer/batches/batch-id/{batch_id}']->get([
  'batch_id' => '1030000071100999991182020050700019480001',
  'query' => [
    'need_query_detail' => true,
    'offset' => 0,
    'limit' => 20,
    'detail_status' => 'FAIL',
  ],
]);
print_r(json_decode((string) $response->getBody(), true));
返回字典类型描述
transfer_batchobject转账批次单
mchidstring商户号
out_batch_nostring商家批次单号
batch_idstring微信批次单号
appidstring直连商户的appid
batch_statusstring批次状态
batch_typestring批次类型
batch_namestring批次名称
batch_remarkstring批次备注
close_reasonstring批次关闭原因
total_amountinteger转账总金额
total_numinteger转账总笔数
create_timestring批次创建时间
update_timestring批次更新时间
success_amountinteger转账成功金额
success_numinteger转账成功笔数
fail_amountinteger转账失败金额
fail_numinteger转账失败笔数
transfer_scene_idstring转账场景ID
transfer_detail_listobject[]转账明细单列表
detail_idstring微信明细单号
out_detail_nostring商家明细单号
detail_statusstring明细状态

参阅 官方文档

Published on the GitHub by TheNorthMemory