Skip to content

间联模式查询商户审核状态开放接口

为了提升特约商户录入质量,发现并及时中止特约商户风险交易行为,现面向银行服务商开放风险商户数据,支持银行在录入商户前提前核查商户风险、了解风险交易、并且将风险处理结果同步微信支付.用于服务商/银行准入商户时,根据身份证,银行卡号,营业执照等信息查询商户是否有风险。说明:该接口需要提供以下信息至少一种,提供的信息越多,查询结果越准确。

请求参数类型描述
xmlobject声明请求的XML数据结构
mch_idstring服务商号
sub_mch_idstring子商户号
channel_idstring渠道号
sign_typestring签名类型
HMAC-SHA256 枚举值
php
$instance->v2->mchrisk->bankquerymchauditinfo->postAsync([
  'xml' => [
    'mch_id'     => '1900000109',
    'sub_mch_id' => '999990016',
    'channel_id' => '999990017',
    'sign_type'  => 'HMAC-SHA256',
  ],
])
->then(static function(\Psr\Http\Message\ResponseInterface $response) {
  print_r(\WeChatPay\Transformer::toArray((string) $response->getBody()));
})
->wait();
php
$instance->chain('v2/mchrisk/bankquerymchauditinfo')->postAsync([
  'xml' => [
    'mch_id'     => '1900000109',
    'sub_mch_id' => '999990016',
    'channel_id' => '999990017',
    'sign_type'  => 'HMAC-SHA256',
  ],
])
->then(static function(\Psr\Http\Message\ResponseInterface $response) {
  print_r(\WeChatPay\Transformer::toArray((string) $response->getBody()));
})
->wait();
php
$instance['v2/mchrisk/bankquerymchauditinfo']->postAsync([
  'xml' => [
    'mch_id'     => '1900000109',
    'sub_mch_id' => '999990016',
    'channel_id' => '999990017',
    'sign_type'  => 'HMAC-SHA256',
  ],
])
->then(static function(\Psr\Http\Message\ResponseInterface $response) {
  print_r(\WeChatPay\Transformer::toArray((string) $response->getBody()));
})
->wait();
php
$response = $instance->v2->mchrisk->bankquerymchauditinfo->post([
  'xml' => [
    'mch_id'     => '1900000109',
    'sub_mch_id' => '999990016',
    'channel_id' => '999990017',
    'sign_type'  => 'HMAC-SHA256',
  ],
]);
print_r(\WeChatPay\Transformer::toArray((string) $response->getBody()));
php
$response = $instance->chain('v2/mchrisk/bankquerymchauditinfo')->post([
  'xml' => [
    'mch_id'     => '1900000109',
    'sub_mch_id' => '999990016',
    'channel_id' => '999990017',
    'sign_type'  => 'HMAC-SHA256',
  ],
]);
print_r(\WeChatPay\Transformer::toArray((string) $response->getBody()));
php
$response = $instance['v2/mchrisk/bankquerymchauditinfo']->post([
  'xml' => [
    'mch_id'     => '1900000109',
    'sub_mch_id' => '999990016',
    'channel_id' => '999990017',
    'sign_type'  => 'HMAC-SHA256',
  ],
]);
print_r(\WeChatPay\Transformer::toArray((string) $response->getBody()));
返回字典类型描述
return_codestring返回状态码
SUCCESS | FAIL 枚举值之一
return_msgstring返回结果
result_codestring业务结果
SUCCESS | FAIL 枚举值之一
err_codestring错误代码
err_code_desstring错误描述
mch_idstring服务商号
sub_mch_idstring子商户号
channel_idstring渠道号
audit_statusstring审核状态
audit_commentstring审核备注
nonce_strstring随机字符串
signstring签名
sign_typestring签名类型
HMAC-SHA256 枚举值

参阅 官方文档

Published on the GitHub by TheNorthMemory