Skip to content

查询结算账户修改申请状态

服务商/电商平台(不包括支付机构、银行),可使用本接口,查询其进件且已签约特约商户/二级商户的结算账户的修改申请单信息和审核结果。

请求参数类型描述
sub_mchidstring特约商户/二级商户号
application_nostring修改结算账户申请单号
php
$instance->v3->apply4sub->sub_merchants->_sub_mchid_->application->_application_no_->getAsync([
  'sub_mchid' => '1511101111',
  'application_no' => '102329389XXXX',
])
->then(static function(\Psr\Http\Message\ResponseInterface $response) {
  print_r(json_decode((string) $response->getBody(), true));
})
->wait();
php
$instance->chain('v3/apply4sub/sub_merchants/{sub_mchid}/application/{application_no}')->getAsync([
  'sub_mchid' => '1511101111',
  'application_no' => '102329389XXXX',
])
->then(static function(\Psr\Http\Message\ResponseInterface $response) {
  print_r(json_decode((string) $response->getBody(), true));
})
->wait();
php
$instance['v3/apply4sub/sub_merchants/{sub_mchid}/application/{application_no}']->getAsync([
  'sub_mchid' => '1511101111',
  'application_no' => '102329389XXXX',
])
->then(static function(\Psr\Http\Message\ResponseInterface $response) {
  print_r(json_decode((string) $response->getBody(), true));
})
->wait();
php
$response = $instance->v3->apply4sub->sub_merchants->_sub_mchid_->application->_application_no_->get([
  'sub_mchid' => '1511101111',
  'application_no' => '102329389XXXX',
]);
print_r(json_decode((string) $response->getBody(), true));
php
$response = $instance->chain('v3/apply4sub/sub_merchants/{sub_mchid}/application/{application_no}')->get([
  'sub_mchid' => '1511101111',
  'application_no' => '102329389XXXX',
]);
print_r(json_decode((string) $response->getBody(), true));
php
$response = $instance['v3/apply4sub/sub_merchants/{sub_mchid}/application/{application_no}']->get([
  'sub_mchid' => '1511101111',
  'application_no' => '102329389XXXX',
]);
print_r(json_decode((string) $response->getBody(), true));
返回字典类型描述
account_namestring开户名称
account_typestring账户类型
account_bankstring开户银行
bank_namestring开户银行全称(含支行)
bank_branch_idstring开户银行联行号
account_numberstring银行账号
verify_resultstring审核状态
verify_fail_reasonstring审核驳回原因
verify_finish_timestring审核结果更新时间

参阅 官方文档 官方文档

Published on the GitHub by TheNorthMemory