Skip to content

通过申请单号查询申请状态

通过申请单号查询申请状态

请求参数类型描述
applyment_idnumber业务申请编号
php
$instance->v3->applyment4sub->applyment->applyment_id->_applyment_id_->getAsync([
  'applyment_id' => '',
])
->then(static function(\Psr\Http\Message\ResponseInterface $response) {
  print_r(json_decode((string) $response->getBody(), true));
})
->wait();
php
$instance->chain('v3/applyment4sub/applyment/applyment_id/{applyment_id}')->getAsync([
  'applyment_id' => '',
])
->then(static function(\Psr\Http\Message\ResponseInterface $response) {
  print_r(json_decode((string) $response->getBody(), true));
})
->wait();
php
$instance['v3/applyment4sub/applyment/applyment_id/{applyment_id}']->getAsync([
  'applyment_id' => '',
])
->then(static function(\Psr\Http\Message\ResponseInterface $response) {
  print_r(json_decode((string) $response->getBody(), true));
})
->wait();
php
$response = $instance->v3->applyment4sub->applyment->applyment_id->_applyment_id_->get([
  'applyment_id' => '',
]);
print_r(json_decode((string) $response->getBody(), true));
php
$response = $instance->chain('v3/applyment4sub/applyment/applyment_id/{applyment_id}')->get([
  'applyment_id' => '',
]);
print_r(json_decode((string) $response->getBody(), true));
php
$response = $instance['v3/applyment4sub/applyment/applyment_id/{applyment_id}']->get([
  'applyment_id' => '',
]);
print_r(json_decode((string) $response->getBody(), true));
返回字典类型描述
business_codestring业务申请编号
applyment_idnumber微信支付申请单号
sub_mchidstring特约商户号
sign_urlstring超级管理员签约链接
applyment_statestring申请单状态
APPLYMENT_STATE_WAITTING_FOR_AUDIT | APPLYMENT_STATE_WAITTING_FOR_CONFIRM_CONTACT | APPLYMENT_STATE_WAITTING_FOR_CONFIRM_LEGALPERSON | APPLYMENT_STATE_PASSED | APPLYMENT_STATE_FREEZED | APPLYMENT_STATE_EDITTING | APPLYMENT_STATE_AUDITING | APPLYMENT_STATE_REJECTED | APPLYMENT_STATE_TO_BE_CONFIRMED | APPLYMENT_STATE_TO_BE_SIGNED | APPLYMENT_STATE_SIGNING | APPLYMENT_STATE_FINISHED | APPLYMENT_STATE_CANCELED 枚举值之一
applyment_state_msgstring申请状态描述
audit_detailobject[]驳回原因详情
fieldstring字段名
field_namestring字段名称
reject_reasonstring驳回原因

参阅 官方文档

Published on the GitHub by TheNorthMemory