根据申请单ID查询申请状态
接口适用场景:当服务商提交申请单后,可以根据申请单ID调用此接口查询申请单的审核状态。
| 请求参数 | 类型 | 描述 |
|---|---|---|
| applyment_id | string | 微信支付申请单号 |
php
$instance->v3->brand->applyments->applymentId->_applyment_id_->getAsync([
'applyment_id' => '2000002124775691',
])
->then(static function(\Psr\Http\Message\ResponseInterface $response) {
print_r(json_decode((string) $response->getBody(), true));
})
->wait();php
$instance->chain('v3/brand/applyments/applyment-id/{applyment_id}')->getAsync([
'applyment_id' => '2000002124775691',
])
->then(static function(\Psr\Http\Message\ResponseInterface $response) {
print_r(json_decode((string) $response->getBody(), true));
})
->wait();php
$instance['v3/brand/applyments/applyment-id/{applyment_id}']->getAsync([
'applyment_id' => '2000002124775691',
])
->then(static function(\Psr\Http\Message\ResponseInterface $response) {
print_r(json_decode((string) $response->getBody(), true));
})
->wait();php
$response = $instance->v3->brand->applyments->applymentId->_applyment_id_->get([
'applyment_id' => '2000002124775691',
]);
print_r(json_decode((string) $response->getBody(), true));php
$response = $instance->chain('v3/brand/applyments/applyment-id/{applyment_id}')->get([
'applyment_id' => '2000002124775691',
]);
print_r(json_decode((string) $response->getBody(), true));php
$response = $instance['v3/brand/applyments/applyment-id/{applyment_id}']->get([
'applyment_id' => '2000002124775691',
]);
print_r(json_decode((string) $response->getBody(), true));| 返回字典 | 类型 | 描述 |
|---|---|---|
| applyment_id | string | 微信支付申请单号 |
| business_code | string | 业务申请编号 |
| applyment_state | string | 申请状态APPLYMENT_STATE_UNKNOWN | APPLYMENT_STATE_UNSUBMITTED | APPLYMENT_STATE_WAITING_VALIDATE | APPLYMENT_STATE_WAITING_AUDIT | APPLYMENT_STATE_WAITING_AUTH | APPLYMENT_STATE_OPEN_ACCOUNT | APPLYMENT_STATE_FINISH | APPLYMENT_STATE_AUDIT_REJECTED | APPLYMENT_STATE_CANCELED 枚举值之一 |
| applyment_state_desc | string | 申请状态说明 |
| authorization_confirmation_qr_code | string | 授权确认二维码链接 |
| reject_reason | string | 驳回原因 |
| brand_id | string | 品牌ID |
参阅 官方文档