Skip to content

从业机构同步微信支付分订单信息

前置条件:服务订单状态为“进行中”且订单状态说明需为"商户完结(MCH_COMPLETE)"

请求参数类型描述
out_order_nostring商户服务订单号
jsonobject声明请求的JSON数据结构
service_idstring服务ID
sub_mchidstring子商户号
channel_idstring渠道商商户号
typestring场景类型
detailobject内容信息详情
paid_timestring收款成功时间
php
$instance->v3->payscore->acquiringbank->serviceorder->_out_order_no_->sync->postAsync([
  'out_order_no' => '1234323JKHDFE1243252',
  'json' => [
    'service_id' => '2002000000000558128851361561536',
    'sub_mchid'  => '1900000109',
    'channel_id' => '1230000109',
    'type'       => 'Order_Paid',
    'detail'     => [
      'paid_time' => '20091225091210',
    ],
  ],
])
->then(static function(\Psr\Http\Message\ResponseInterface $response) {
  print_r($response->getStatusCode() === 204);
})
->wait();
php
$instance->chain('v3/payscore/acquiringbank/serviceorder/{out_order_no}/sync')->postAsync([
  'out_order_no' => '1234323JKHDFE1243252',
  'json' => [
    'service_id' => '2002000000000558128851361561536',
    'sub_mchid'  => '1900000109',
    'channel_id' => '1230000109',
    'type'       => 'Order_Paid',
    'detail'     => [
      'paid_time' => '20091225091210',
    ],
  ],
])
->then(static function(\Psr\Http\Message\ResponseInterface $response) {
  print_r($response->getStatusCode() === 204);
})
->wait();
php
$instance['v3/payscore/acquiringbank/serviceorder/{out_order_no}/sync']->postAsync([
  'out_order_no' => '1234323JKHDFE1243252',
  'json' => [
    'service_id' => '2002000000000558128851361561536',
    'sub_mchid'  => '1900000109',
    'channel_id' => '1230000109',
    'type'       => 'Order_Paid',
    'detail'     => [
      'paid_time' => '20091225091210',
    ],
  ],
])
->then(static function(\Psr\Http\Message\ResponseInterface $response) {
  print_r($response->getStatusCode() === 204);
})
->wait();
php
$response = $instance->v3->payscore->acquiringbank->serviceorder->_out_order_no_->sync->post([
  'out_order_no' => '1234323JKHDFE1243252',
  'json' => [
    'service_id' => '2002000000000558128851361561536',
    'sub_mchid'  => '1900000109',
    'channel_id' => '1230000109',
    'type'       => 'Order_Paid',
    'detail'     => [
      'paid_time' => '20091225091210',
    ],
  ],
]);
print_r($response->getStatusCode() === 204);
php
$response = $instance->chain('v3/payscore/acquiringbank/serviceorder/{out_order_no}/sync')->post([
  'out_order_no' => '1234323JKHDFE1243252',
  'json' => [
    'service_id' => '2002000000000558128851361561536',
    'sub_mchid'  => '1900000109',
    'channel_id' => '1230000109',
    'type'       => 'Order_Paid',
    'detail'     => [
      'paid_time' => '20091225091210',
    ],
  ],
]);
print_r($response->getStatusCode() === 204);
php
$response = $instance['v3/payscore/acquiringbank/serviceorder/{out_order_no}/sync']->post([
  'out_order_no' => '1234323JKHDFE1243252',
  'json' => [
    'service_id' => '2002000000000558128851361561536',
    'sub_mchid'  => '1900000109',
    'channel_id' => '1230000109',
    'type'       => 'Order_Paid',
    'detail'     => [
      'paid_time' => '20091225091210',
    ],
  ],
]);
print_r($response->getStatusCode() === 204);
返回字典类型描述
空字符串(无返回内容)

参阅 官方文档

Published on the GitHub by TheNorthMemory