查询审核结果
查询审核结果
请求参数 | 类型 | 描述 |
---|---|---|
json | object | 声明请求的JSON 数据结构 |
org_no | string | 分公司机构代码 |
mchnt_order_id | string | 商户订单号 |
upload_time | string | 审核记录上传时间 |
php
$instance->v3->gov->subsidy->audit->cup->query->postAsync([
'json' => [
'org_no' => '',
'mchnt_order_id' => '',
'upload_time' => '',
],
])
->then(static function(\Psr\Http\Message\ResponseInterface $response) {
print_r(json_decode((string) $response->getBody(), true));
})
->wait();
php
$instance->chain('v3/gov/subsidy/audit/cup/query')->postAsync([
'json' => [
'org_no' => '',
'mchnt_order_id' => '',
'upload_time' => '',
],
])
->then(static function(\Psr\Http\Message\ResponseInterface $response) {
print_r(json_decode((string) $response->getBody(), true));
})
->wait();
php
$instance['v3/gov/subsidy/audit/cup/query']->postAsync([
'json' => [
'org_no' => '',
'mchnt_order_id' => '',
'upload_time' => '',
],
])
->then(static function(\Psr\Http\Message\ResponseInterface $response) {
print_r(json_decode((string) $response->getBody(), true));
})
->wait();
php
$response = $instance->v3->gov->subsidy->audit->cup->query->post([
'json' => [
'org_no' => '',
'mchnt_order_id' => '',
'upload_time' => '',
],
]);
print_r(json_decode((string) $response->getBody(), true));
php
$response = $instance->chain('v3/gov/subsidy/audit/cup/query')->post([
'json' => [
'org_no' => '',
'mchnt_order_id' => '',
'upload_time' => '',
],
]);
print_r(json_decode((string) $response->getBody(), true));
php
$response = $instance['v3/gov/subsidy/audit/cup/query']->post([
'json' => [
'org_no' => '',
'mchnt_order_id' => '',
'upload_time' => '',
],
]);
print_r(json_decode((string) $response->getBody(), true));
返回字典 | 类型 | 描述 |
---|---|---|
code | string | 响应码 |
msg | string | 响应描述 |
sub_code | string | 详细应答码 |
sub_msg | string | 详细应答码描述 |
mchnt_order_id | string | 商户订单号 |
verify_status | string | 核验结果 |
verify_status_desc | string | 核验结果描述 |
audit_status | string | 审核结果 |
audit_status_desc | string | 审核结果描述 |
trade_status | string | 订单状态 |
refund_at | string | 退货金额 |
refund_dt | string | 退货日期 |
org_no | string | 分公司机构代码 |
参阅 官方文档