Skip to content

同步非银联支付交易退款信息

同步非银联支付交易退款信息

请求参数类型描述
jsonobject声明请求的JSON数据结构
org_nostring分公司机构代码
mchnt_order_idstring商户订单号
upload_timestring审核记录上传时间
refund_atstring退款金额
refund_dtstring退款日期
php
$instance->v3->gov->subsidy->audit->cup->refund->sync->postAsync([
  'json' => [
    'org_no'         => '',
    'mchnt_order_id' => '',
    'upload_time'    => '',
    'refund_at'      => '',
    'refund_dt'      => '',
  ],
])
->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/refund/sync')->postAsync([
  'json' => [
    'org_no'         => '',
    'mchnt_order_id' => '',
    'upload_time'    => '',
    'refund_at'      => '',
    'refund_dt'      => '',
  ],
])
->then(static function(\Psr\Http\Message\ResponseInterface $response) {
  print_r(json_decode((string) $response->getBody(), true));
})
->wait();
php
$instance['v3/gov/subsidy/audit/cup/refund/sync']->postAsync([
  'json' => [
    'org_no'         => '',
    'mchnt_order_id' => '',
    'upload_time'    => '',
    'refund_at'      => '',
    'refund_dt'      => '',
  ],
])
->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->refund->sync->post([
  'json' => [
    'org_no'         => '',
    'mchnt_order_id' => '',
    'upload_time'    => '',
    'refund_at'      => '',
    'refund_dt'      => '',
  ],
]);
print_r(json_decode((string) $response->getBody(), true));
php
$response = $instance->chain('v3/gov/subsidy/audit/cup/refund/sync')->post([
  'json' => [
    'org_no'         => '',
    'mchnt_order_id' => '',
    'upload_time'    => '',
    'refund_at'      => '',
    'refund_dt'      => '',
  ],
]);
print_r(json_decode((string) $response->getBody(), true));
php
$response = $instance['v3/gov/subsidy/audit/cup/refund/sync']->post([
  'json' => [
    'org_no'         => '',
    'mchnt_order_id' => '',
    'upload_time'    => '',
    'refund_at'      => '',
    'refund_dt'      => '',
  ],
]);
print_r(json_decode((string) $response->getBody(), true));
返回字典类型描述
codestring响应码
msgstring响应描述
sub_codestring详细应答码
sub_msgstring详细应答码描述

参阅 官方文档

Published on the GitHub by TheNorthMemory