Skip to content

资料更新请求审核结果回调通知

微信支付侧提交资料更新申请后,此接口接收微众更新请求审核结果回调通知。限频:200/分钟

请求参数类型描述
jsonobject声明请求的JSON数据结构
out_request_nostring资料更新请求单号
mchidstring商户号
audit_resultstring审核结果
PASS | REJECT 枚举值之一
audit_finish_timestring审核完成时间
attach_infostring业务附属信息
fail_codestring审核驳回错误码
fail_msgstring审核驳回错误原因
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_msgstring接口返回信息

Published on the GitHub by TheNorthMemory