渠道商查询商户审核信息
用于渠道商查询其下属关联机构进件的商户的审核信息。
| 请求参数 | 类型 | 描述 |
|---|---|---|
| xml | object | 声明请求的XML数据结构 |
| mch_id | string | 渠道商号 |
| sub_mch_id | string | 子商户号 |
| acquiring_bank_id | string | 服务商号 |
| sign_type | string | 签名类型HMAC-SHA256 枚举值 |
php
$instance->v2->mchrisk->channelquerymchauditinfo->postAsync([
'xml' => [
'mch_id' => '1900000109',
'sub_mch_id' => '999990016',
'acquiring_bank_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/channelquerymchauditinfo')->postAsync([
'xml' => [
'mch_id' => '1900000109',
'sub_mch_id' => '999990016',
'acquiring_bank_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/channelquerymchauditinfo']->postAsync([
'xml' => [
'mch_id' => '1900000109',
'sub_mch_id' => '999990016',
'acquiring_bank_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->channelquerymchauditinfo->post([
'xml' => [
'mch_id' => '1900000109',
'sub_mch_id' => '999990016',
'acquiring_bank_id' => '999990017',
'sign_type' => 'HMAC-SHA256',
],
]);
print_r(\WeChatPay\Transformer::toArray((string) $response->getBody()));php
$response = $instance->chain('v2/mchrisk/channelquerymchauditinfo')->post([
'xml' => [
'mch_id' => '1900000109',
'sub_mch_id' => '999990016',
'acquiring_bank_id' => '999990017',
'sign_type' => 'HMAC-SHA256',
],
]);
print_r(\WeChatPay\Transformer::toArray((string) $response->getBody()));php
$response = $instance['v2/mchrisk/channelquerymchauditinfo']->post([
'xml' => [
'mch_id' => '1900000109',
'sub_mch_id' => '999990016',
'acquiring_bank_id' => '999990017',
'sign_type' => 'HMAC-SHA256',
],
]);
print_r(\WeChatPay\Transformer::toArray((string) $response->getBody()));| 返回字典 | 类型 | 描述 |
|---|---|---|
| return_code | string | 返回状态码SUCCESS | FAIL 枚举值之一 |
| return_msg | string | 返回结果 |
| result_code | string | 业务结果SUCCESS | FAIL 枚举值之一 |
| err_code | string | 错误代码 |
| err_code_des | string | 错误描述 |
| mch_id | string | 服务商号 |
| sub_mch_id | string | 子商户号 |
| channel_id | string | 渠道号 |
| audit_status | string | 审核状态 |
| audit_comment | string | 审核备注 |
| nonce_str | string | 随机字符串 |
| sign | string | 签名 |
| sign_type | string | 签名类型HMAC-SHA256 枚举值 |
参阅 官方文档