Skip to content

品类凭证码预核销撤销

品类凭证码预核销撤销

请求参数类型描述
jsonobject声明请求的JSON数据结构
sp_serial_nostring接入方请求流水号
cred_frozen_nostring冻结流水号
trans_datestring交易日期
trans_timestring交易时间
auth_codestring品类凭证码
req_ssnstring请求流水号
php
$instance->v3->gov->subsidy->zhejiang->authcode->cancel->postAsync([
  'json' => [
    'sp_serial_no'   => '',
    'cred_frozen_no' => '',
    'trans_date'     => '',
    'trans_time'     => '',
    'auth_code'      => '',
    'req_ssn'        => '123',
  ],
])
->then(static function(\Psr\Http\Message\ResponseInterface $response) {
  print_r(json_decode((string) $response->getBody(), true));
})
->wait();
php
$instance->chain('v3/gov/subsidy/zhejiang/authcode/cancel')->postAsync([
  'json' => [
    'sp_serial_no'   => '',
    'cred_frozen_no' => '',
    'trans_date'     => '',
    'trans_time'     => '',
    'auth_code'      => '',
    'req_ssn'        => '123',
  ],
])
->then(static function(\Psr\Http\Message\ResponseInterface $response) {
  print_r(json_decode((string) $response->getBody(), true));
})
->wait();
php
$instance['v3/gov/subsidy/zhejiang/authcode/cancel']->postAsync([
  'json' => [
    'sp_serial_no'   => '',
    'cred_frozen_no' => '',
    'trans_date'     => '',
    'trans_time'     => '',
    'auth_code'      => '',
    'req_ssn'        => '123',
  ],
])
->then(static function(\Psr\Http\Message\ResponseInterface $response) {
  print_r(json_decode((string) $response->getBody(), true));
})
->wait();
php
$response = $instance->v3->gov->subsidy->zhejiang->authcode->cancel->post([
  'json' => [
    'sp_serial_no'   => '',
    'cred_frozen_no' => '',
    'trans_date'     => '',
    'trans_time'     => '',
    'auth_code'      => '',
    'req_ssn'        => '123',
  ],
]);
print_r(json_decode((string) $response->getBody(), true));
php
$response = $instance->chain('v3/gov/subsidy/zhejiang/authcode/cancel')->post([
  'json' => [
    'sp_serial_no'   => '',
    'cred_frozen_no' => '',
    'trans_date'     => '',
    'trans_time'     => '',
    'auth_code'      => '',
    'req_ssn'        => '123',
  ],
]);
print_r(json_decode((string) $response->getBody(), true));
php
$response = $instance['v3/gov/subsidy/zhejiang/authcode/cancel']->post([
  'json' => [
    'sp_serial_no'   => '',
    'cred_frozen_no' => '',
    'trans_date'     => '',
    'trans_time'     => '',
    'auth_code'      => '',
    'req_ssn'        => '123',
  ],
]);
print_r(json_decode((string) $response->getBody(), true));
返回字典类型描述
resp_codestring响应码
resp_descstring响应描述

参阅 官方文档

Published on the GitHub by TheNorthMemory