资料更新请求审核结果回调通知
微信支付侧提交资料更新申请后,此接口接收微众更新请求审核结果回调通知。限频:200/分钟
请求参数 | 类型 | 描述 |
---|---|---|
json | object | 声明请求的JSON 数据结构 |
out_request_no | string | 资料更新请求单号 |
mchid | string | 商户号 |
audit_result | string | 审核结果PASS | REJECT 枚举值之一 |
audit_finish_time | string | 审核完成时间 |
attach_info | string | 业务附属信息 |
fail_code | string | 审核驳回错误码 |
fail_msg | string | 审核驳回错误原因 |
php
$instance->v3->aggracctBc->wbChannel->controlOrders->info->update->result->notify->postAsync([
'json' => [
'out_request_no' => 'htozr8denqegbt6tk6u10iymo7yww5pn',
'mchid' => '1900016681',
'audit_result' => 'PASS',
'audit_finish_time' => '2015-05-20T13:29:35+08:00',
'attach_info' => 'updateidcard',
'fail_code' => '1001',
'fail_msg' => 'IDCARD_ILLEGAL',
],
])
->then(static function(\Psr\Http\Message\ResponseInterface $response) {
print_r(json_decode((string) $response->getBody(), true));
})
->wait();
php
$instance->chain('v3/aggracct-bc/wb-channel/control-orders/info/update/result/notify')->postAsync([
'json' => [
'out_request_no' => 'htozr8denqegbt6tk6u10iymo7yww5pn',
'mchid' => '1900016681',
'audit_result' => 'PASS',
'audit_finish_time' => '2015-05-20T13:29:35+08:00',
'attach_info' => 'updateidcard',
'fail_code' => '1001',
'fail_msg' => 'IDCARD_ILLEGAL',
],
])
->then(static function(\Psr\Http\Message\ResponseInterface $response) {
print_r(json_decode((string) $response->getBody(), true));
})
->wait();
php
$instance['v3/aggracct-bc/wb-channel/control-orders/info/update/result/notify']->postAsync([
'json' => [
'out_request_no' => 'htozr8denqegbt6tk6u10iymo7yww5pn',
'mchid' => '1900016681',
'audit_result' => 'PASS',
'audit_finish_time' => '2015-05-20T13:29:35+08:00',
'attach_info' => 'updateidcard',
'fail_code' => '1001',
'fail_msg' => 'IDCARD_ILLEGAL',
],
])
->then(static function(\Psr\Http\Message\ResponseInterface $response) {
print_r(json_decode((string) $response->getBody(), true));
})
->wait();
php
$response = $instance->v3->aggracctBc->wbChannel->controlOrders->info->update->result->notify->post([
'json' => [
'out_request_no' => 'htozr8denqegbt6tk6u10iymo7yww5pn',
'mchid' => '1900016681',
'audit_result' => 'PASS',
'audit_finish_time' => '2015-05-20T13:29:35+08:00',
'attach_info' => 'updateidcard',
'fail_code' => '1001',
'fail_msg' => 'IDCARD_ILLEGAL',
],
]);
print_r(json_decode((string) $response->getBody(), true));
php
$response = $instance->chain('v3/aggracct-bc/wb-channel/control-orders/info/update/result/notify')->post([
'json' => [
'out_request_no' => 'htozr8denqegbt6tk6u10iymo7yww5pn',
'mchid' => '1900016681',
'audit_result' => 'PASS',
'audit_finish_time' => '2015-05-20T13:29:35+08:00',
'attach_info' => 'updateidcard',
'fail_code' => '1001',
'fail_msg' => 'IDCARD_ILLEGAL',
],
]);
print_r(json_decode((string) $response->getBody(), true));
php
$response = $instance['v3/aggracct-bc/wb-channel/control-orders/info/update/result/notify']->post([
'json' => [
'out_request_no' => 'htozr8denqegbt6tk6u10iymo7yww5pn',
'mchid' => '1900016681',
'audit_result' => 'PASS',
'audit_finish_time' => '2015-05-20T13:29:35+08:00',
'attach_info' => 'updateidcard',
'fail_code' => '1001',
'fail_msg' => 'IDCARD_ILLEGAL',
],
]);
print_r(json_decode((string) $response->getBody(), true));
返回字典 | 类型 | 描述 |
---|---|---|
ret_msg | string | 接口返回信息 |