Skip to content

下发服务费用待处理消息

商户系统请求支付分系统,下发服务费用待处理消息; 一笔服务订单仅可以发送一次服务费用待处理消息;

请求参数类型描述
out_order_nostring商户服务订单号
jsonobject声明请求的JSON数据结构
service_idstring服务ID
post_paymentsobject[]后付费项目
namestring付费名称
amountnumber付费金额
descriptionstring付费说明
countnumber付费数量
post_discountsobject[]商户优惠
namestring优惠名称
descriptionstring优惠说明
amountnumber优惠金额
countnumber优惠数量
total_amountnumber总金额
prepaid_timestring预计扣费时间
php
$instance->v3->payscore->serviceorder->_out_order_no_->sendPendingmessage->postAsync([
  'out_order_no' => '',
  'json' => [
    'service_id' => '2002000000000558128851361561536',
    'post_payments' => [[
      'name' => '就餐费用',
      'amount' => 40000,
      'description' => '就餐人均100元',
      'count' => 4,
    ],],
    'post_discounts' => [[
      'name' => '满20减1元',
      'description' => '不与其他优惠叠加',
      'amount' => 100,
      'count' => 2,
    ],],
    'total_amount' => 50000,
    'prepaid_time' => '20231218',
  ],
])
->then(static function(\Psr\Http\Message\ResponseInterface $response) {
  print_r($response->getStatusCode() === 204);
})
->wait();
php
$instance->chain('v3/payscore/serviceorder/{out_order_no}/send-pendingmessage')->postAsync([
  'out_order_no' => '',
  'json' => [
    'service_id' => '2002000000000558128851361561536',
    'post_payments' => [[
      'name' => '就餐费用',
      'amount' => 40000,
      'description' => '就餐人均100元',
      'count' => 4,
    ],],
    'post_discounts' => [[
      'name' => '满20减1元',
      'description' => '不与其他优惠叠加',
      'amount' => 100,
      'count' => 2,
    ],],
    'total_amount' => 50000,
    'prepaid_time' => '20231218',
  ],
])
->then(static function(\Psr\Http\Message\ResponseInterface $response) {
  print_r($response->getStatusCode() === 204);
})
->wait();
php
$instance['v3/payscore/serviceorder/{out_order_no}/send-pendingmessage']->postAsync([
  'out_order_no' => '',
  'json' => [
    'service_id' => '2002000000000558128851361561536',
    'post_payments' => [[
      'name' => '就餐费用',
      'amount' => 40000,
      'description' => '就餐人均100元',
      'count' => 4,
    ],],
    'post_discounts' => [[
      'name' => '满20减1元',
      'description' => '不与其他优惠叠加',
      'amount' => 100,
      'count' => 2,
    ],],
    'total_amount' => 50000,
    'prepaid_time' => '20231218',
  ],
])
->then(static function(\Psr\Http\Message\ResponseInterface $response) {
  print_r($response->getStatusCode() === 204);
})
->wait();
php
$response = $instance->v3->payscore->serviceorder->_out_order_no_->sendPendingmessage->post([
  'out_order_no' => '',
  'json' => [
    'service_id' => '2002000000000558128851361561536',
    'post_payments' => [[
      'name' => '就餐费用',
      'amount' => 40000,
      'description' => '就餐人均100元',
      'count' => 4,
    ],],
    'post_discounts' => [[
      'name' => '满20减1元',
      'description' => '不与其他优惠叠加',
      'amount' => 100,
      'count' => 2,
    ],],
    'total_amount' => 50000,
    'prepaid_time' => '20231218',
  ],
]);
print_r($response->getStatusCode() === 204);
php
$response = $instance->chain('v3/payscore/serviceorder/{out_order_no}/send-pendingmessage')->post([
  'out_order_no' => '',
  'json' => [
    'service_id' => '2002000000000558128851361561536',
    'post_payments' => [[
      'name' => '就餐费用',
      'amount' => 40000,
      'description' => '就餐人均100元',
      'count' => 4,
    ],],
    'post_discounts' => [[
      'name' => '满20减1元',
      'description' => '不与其他优惠叠加',
      'amount' => 100,
      'count' => 2,
    ],],
    'total_amount' => 50000,
    'prepaid_time' => '20231218',
  ],
]);
print_r($response->getStatusCode() === 204);
php
$response = $instance['v3/payscore/serviceorder/{out_order_no}/send-pendingmessage']->post([
  'out_order_no' => '',
  'json' => [
    'service_id' => '2002000000000558128851361561536',
    'post_payments' => [[
      'name' => '就餐费用',
      'amount' => 40000,
      'description' => '就餐人均100元',
      'count' => 4,
    ],],
    'post_discounts' => [[
      'name' => '满20减1元',
      'description' => '不与其他优惠叠加',
      'amount' => 100,
      'count' => 2,
    ],],
    'total_amount' => 50000,
    'prepaid_time' => '20231218',
  ],
]);
print_r($response->getStatusCode() === 204);
返回字典类型描述
空字符串(无返回内容)

参阅 官方文档

Published on the GitHub by TheNorthMemory