通过申请单号查询申请状态
通过申请单号查询申请状态
请求参数 | 类型 | 描述 |
---|---|---|
applyment_id | number | 业务申请编号 |
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_code | string | 业务申请编号 |
applyment_id | number | 微信支付申请单号 |
sub_mchid | string | 特约商户号 |
sign_url | string | 超级管理员签约链接 |
applyment_state | string | 申请单状态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_msg | string | 申请状态描述 |
audit_detail | object[] | 驳回原因详情 |
field | string | 字段名 |
field_name | string | 字段名称 |
reject_reason | string | 驳回原因 |
参阅 官方文档