Skip to content

创建租借订单

创建订单后如果超过一小时用户没有进行确认订单操作,订单将失效,无法被用户确认。

请求参数类型描述
securitytrue声明加载商户API证书
xmlobject声明请求的XML数据结构
versionstring接口版本号
1.0 枚举值
appidstring公众账号ID
mch_idstring商户号
sign_typestring签名类型
HMAC-SHA256 枚举值
out_order_nostring商户服务订单号
service_idstring服务ID
goods_namestring商品名称
start_timestring租用时间
end_timestring预定归还时间
service_locationstring租用地点
deposit_amountinteger押金总额
rent_unitstring租金规则 计费单位
rent_unit_feeinteger租金规则 计费单价费用
rent_fee_descstring租金规则 计费说明
attachstring商户数据包
cert_serial_nostring平台证书序列号
openidstring用户标识
namestring用户姓名
phonestring用户手机号
useridstring用户身份证ID
addressstring用户收货地址
php
$instance->v2->wxv->createrentbill->postAsync([
  'security' => true,
  'xml' => [
    'version'          => '1.0',
    'appid'            => 'wxd678efh567hg6787',
    'mch_id'           => '1230000109',
    'sign_type'        => 'HMAC-SHA256',
    'out_order_no'     => '1234323JKHDFE1243252',
    'service_id'       => '',
    'goods_name'       => '充电宝一个',
    'start_time'       => '20091225091010',
    'end_time'         => '20091225091010',
    'service_location' => '嗨客时尚主题展餐厅',
    'deposit_amount'   => '0',
    'rent_unit'        => 'FEN_1_HOUR',
    'rent_unit_fee'    => '8000',
    'rent_fee_desc'    => '租金前1小时免费,每日封顶10元。',
    'attach'           => '',
    'cert_serial_no'   => '45233302',
    'openid'           => 'oUpF8uMuAJO_M2pxb1Q9zNjWeS6o',
    'name'             => '',
    'phone'            => '',
    'userid'           => '',
    'address'          => '',
  ],
])
->then(static function(\Psr\Http\Message\ResponseInterface $response) {
  print_r(\WeChatPay\Transformer::toArray((string) $response->getBody()));
})
->wait();
php
$instance->chain('v2/wxv/createrentbill')->postAsync([
  'security' => true,
  'xml' => [
    'version'          => '1.0',
    'appid'            => 'wxd678efh567hg6787',
    'mch_id'           => '1230000109',
    'sign_type'        => 'HMAC-SHA256',
    'out_order_no'     => '1234323JKHDFE1243252',
    'service_id'       => '',
    'goods_name'       => '充电宝一个',
    'start_time'       => '20091225091010',
    'end_time'         => '20091225091010',
    'service_location' => '嗨客时尚主题展餐厅',
    'deposit_amount'   => '0',
    'rent_unit'        => 'FEN_1_HOUR',
    'rent_unit_fee'    => '8000',
    'rent_fee_desc'    => '租金前1小时免费,每日封顶10元。',
    'attach'           => '',
    'cert_serial_no'   => '45233302',
    'openid'           => 'oUpF8uMuAJO_M2pxb1Q9zNjWeS6o',
    'name'             => '',
    'phone'            => '',
    'userid'           => '',
    'address'          => '',
  ],
])
->then(static function(\Psr\Http\Message\ResponseInterface $response) {
  print_r(\WeChatPay\Transformer::toArray((string) $response->getBody()));
})
->wait();
php
$instance['v2/wxv/createrentbill']->postAsync([
  'security' => true,
  'xml' => [
    'version'          => '1.0',
    'appid'            => 'wxd678efh567hg6787',
    'mch_id'           => '1230000109',
    'sign_type'        => 'HMAC-SHA256',
    'out_order_no'     => '1234323JKHDFE1243252',
    'service_id'       => '',
    'goods_name'       => '充电宝一个',
    'start_time'       => '20091225091010',
    'end_time'         => '20091225091010',
    'service_location' => '嗨客时尚主题展餐厅',
    'deposit_amount'   => '0',
    'rent_unit'        => 'FEN_1_HOUR',
    'rent_unit_fee'    => '8000',
    'rent_fee_desc'    => '租金前1小时免费,每日封顶10元。',
    'attach'           => '',
    'cert_serial_no'   => '45233302',
    'openid'           => 'oUpF8uMuAJO_M2pxb1Q9zNjWeS6o',
    'name'             => '',
    'phone'            => '',
    'userid'           => '',
    'address'          => '',
  ],
])
->then(static function(\Psr\Http\Message\ResponseInterface $response) {
  print_r(\WeChatPay\Transformer::toArray((string) $response->getBody()));
})
->wait();
php
$response = $instance->v2->wxv->createrentbill->post([
  'security' => true,
  'xml' => [
    'version'          => '1.0',
    'appid'            => 'wxd678efh567hg6787',
    'mch_id'           => '1230000109',
    'sign_type'        => 'HMAC-SHA256',
    'out_order_no'     => '1234323JKHDFE1243252',
    'service_id'       => '',
    'goods_name'       => '充电宝一个',
    'start_time'       => '20091225091010',
    'end_time'         => '20091225091010',
    'service_location' => '嗨客时尚主题展餐厅',
    'deposit_amount'   => '0',
    'rent_unit'        => 'FEN_1_HOUR',
    'rent_unit_fee'    => '8000',
    'rent_fee_desc'    => '租金前1小时免费,每日封顶10元。',
    'attach'           => '',
    'cert_serial_no'   => '45233302',
    'openid'           => 'oUpF8uMuAJO_M2pxb1Q9zNjWeS6o',
    'name'             => '',
    'phone'            => '',
    'userid'           => '',
    'address'          => '',
  ],
]);
print_r(\WeChatPay\Transformer::toArray((string) $response->getBody()));
php
$response = $instance->chain('v2/wxv/createrentbill')->post([
  'security' => true,
  'xml' => [
    'version'          => '1.0',
    'appid'            => 'wxd678efh567hg6787',
    'mch_id'           => '1230000109',
    'sign_type'        => 'HMAC-SHA256',
    'out_order_no'     => '1234323JKHDFE1243252',
    'service_id'       => '',
    'goods_name'       => '充电宝一个',
    'start_time'       => '20091225091010',
    'end_time'         => '20091225091010',
    'service_location' => '嗨客时尚主题展餐厅',
    'deposit_amount'   => '0',
    'rent_unit'        => 'FEN_1_HOUR',
    'rent_unit_fee'    => '8000',
    'rent_fee_desc'    => '租金前1小时免费,每日封顶10元。',
    'attach'           => '',
    'cert_serial_no'   => '45233302',
    'openid'           => 'oUpF8uMuAJO_M2pxb1Q9zNjWeS6o',
    'name'             => '',
    'phone'            => '',
    'userid'           => '',
    'address'          => '',
  ],
]);
print_r(\WeChatPay\Transformer::toArray((string) $response->getBody()));
php
$response = $instance['v2/wxv/createrentbill']->post([
  'security' => true,
  'xml' => [
    'version'          => '1.0',
    'appid'            => 'wxd678efh567hg6787',
    'mch_id'           => '1230000109',
    'sign_type'        => 'HMAC-SHA256',
    'out_order_no'     => '1234323JKHDFE1243252',
    'service_id'       => '',
    'goods_name'       => '充电宝一个',
    'start_time'       => '20091225091010',
    'end_time'         => '20091225091010',
    'service_location' => '嗨客时尚主题展餐厅',
    'deposit_amount'   => '0',
    'rent_unit'        => 'FEN_1_HOUR',
    'rent_unit_fee'    => '8000',
    'rent_fee_desc'    => '租金前1小时免费,每日封顶10元。',
    'attach'           => '',
    'cert_serial_no'   => '45233302',
    'openid'           => 'oUpF8uMuAJO_M2pxb1Q9zNjWeS6o',
    'name'             => '',
    'phone'            => '',
    'userid'           => '',
    'address'          => '',
  ],
]);
print_r(\WeChatPay\Transformer::toArray((string) $response->getBody()));
返回字典类型描述
return_codestring返回状态码
SUCCESS | FAIL 枚举值之一
return_msgstring返回结果
signstring签名
nonce_strstring随机字符串
result_codestring业务结果
SUCCESS | FAIL 枚举值之一
err_codestring错误代码
err_code_desstring错误描述
appidstring公众账号ID
mch_idstring商户号
out_order_nostring商户服务订单号
service_idstring服务ID
order_idstring微信支付服务订单号
miniprogram_appidstring小程序跳转appid
miniprogram_pathstring小程序跳转路径
miniprogram_usernamestring小程序跳转username
packagestring跳转微信侧小程序订单数据

参阅 官方文档

Published on the GitHub by TheNorthMemory