Skip to content

商家明细单号查询明细单

商户可以通过该接口查询单笔转账明细单。

请求参数类型描述
out_detail_nostring商家明细单号
out_batch_nostring商家批次单号
php
$instance->v3->transfer->batches->outBatchNo->_out_batch_no_->details->outDetailNo->_out_detail_no_->getAsync([
  'out_detail_no' => 'x23zy545Bd5436',
  'out_batch_no' => 'plfk2020042013',
])
->then(static function(\Psr\Http\Message\ResponseInterface $response) {
  print_r(json_decode((string) $response->getBody(), true));
})
->wait();
php
$instance->chain('v3/transfer/batches/out-batch-no/{out_batch_no}/details/out-detail-no/{out_detail_no}')->getAsync([
  'out_detail_no' => 'x23zy545Bd5436',
  'out_batch_no' => 'plfk2020042013',
])
->then(static function(\Psr\Http\Message\ResponseInterface $response) {
  print_r(json_decode((string) $response->getBody(), true));
})
->wait();
php
$instance['v3/transfer/batches/out-batch-no/{out_batch_no}/details/out-detail-no/{out_detail_no}']->getAsync([
  'out_detail_no' => 'x23zy545Bd5436',
  'out_batch_no' => 'plfk2020042013',
])
->then(static function(\Psr\Http\Message\ResponseInterface $response) {
  print_r(json_decode((string) $response->getBody(), true));
})
->wait();
php
$response = $instance->v3->transfer->batches->outBatchNo->_out_batch_no_->details->outDetailNo->_out_detail_no_->get([
  'out_detail_no' => 'x23zy545Bd5436',
  'out_batch_no' => 'plfk2020042013',
]);
print_r(json_decode((string) $response->getBody(), true));
php
$response = $instance->chain('v3/transfer/batches/out-batch-no/{out_batch_no}/details/out-detail-no/{out_detail_no}')->get([
  'out_detail_no' => 'x23zy545Bd5436',
  'out_batch_no' => 'plfk2020042013',
]);
print_r(json_decode((string) $response->getBody(), true));
php
$response = $instance['v3/transfer/batches/out-batch-no/{out_batch_no}/details/out-detail-no/{out_detail_no}']->get([
  'out_detail_no' => 'x23zy545Bd5436',
  'out_batch_no' => 'plfk2020042013',
]);
print_r(json_decode((string) $response->getBody(), true));
返回字典类型描述
mchidstring商户号
out_batch_nostring商家批次单号
batch_idstring微信批次单号
appidstring直连商户的appid
out_detail_nostring商家明细单号
detail_idstring微信明细单号
detail_statusstring明细状态
transfer_amountinteger转账金额
transfer_remarkstring转账备注
fail_reasonstring明细失败原因
openidstring用户在直连商户应用下的用户标示
user_namestring收款用户姓名
initiate_timestring转账发起时间
update_timestring明细更新时间

参阅 官方文档

Published on the GitHub by TheNorthMemory