Skip to content

查询速住订单

前置条件:商户下单待受理后。

请求参数类型描述
securitytrue声明加载商户API证书
xmlobject声明请求的XML数据结构
versionstring接口版本号
1.0 枚举值
appidstring公众账号ID
mch_idstring商户号
sign_typestring签名类型
HMAC-SHA256 枚举值
out_order_nostring商户服务订单号
return_query_idstring回跳查询id
service_idstring服务ID
php
$instance->v2->wxv->queryhotelbill->postAsync([
  'security' => true,
  'xml' => [
    'version'         => '1.0',
    'appid'           => 'wxd678efh567hg6787',
    'mch_id'          => '1230000109',
    'sign_type'       => 'HMAC-SHA256',
    'out_order_no'    => '1234323JKHDFE1243252',
    'return_query_id' => '微信侧回跳到商户前端时用于查单的单据查询id.',
    'service_id'      => '',
  ],
])
->then(static function(\Psr\Http\Message\ResponseInterface $response) {
  print_r(\WeChatPay\Transformer::toArray((string) $response->getBody()));
})
->wait();
php
$instance->chain('v2/wxv/queryhotelbill')->postAsync([
  'security' => true,
  'xml' => [
    'version'         => '1.0',
    'appid'           => 'wxd678efh567hg6787',
    'mch_id'          => '1230000109',
    'sign_type'       => 'HMAC-SHA256',
    'out_order_no'    => '1234323JKHDFE1243252',
    'return_query_id' => '微信侧回跳到商户前端时用于查单的单据查询id.',
    'service_id'      => '',
  ],
])
->then(static function(\Psr\Http\Message\ResponseInterface $response) {
  print_r(\WeChatPay\Transformer::toArray((string) $response->getBody()));
})
->wait();
php
$instance['v2/wxv/queryhotelbill']->postAsync([
  'security' => true,
  'xml' => [
    'version'         => '1.0',
    'appid'           => 'wxd678efh567hg6787',
    'mch_id'          => '1230000109',
    'sign_type'       => 'HMAC-SHA256',
    'out_order_no'    => '1234323JKHDFE1243252',
    'return_query_id' => '微信侧回跳到商户前端时用于查单的单据查询id.',
    'service_id'      => '',
  ],
])
->then(static function(\Psr\Http\Message\ResponseInterface $response) {
  print_r(\WeChatPay\Transformer::toArray((string) $response->getBody()));
})
->wait();
php
$response = $instance->v2->wxv->queryhotelbill->post([
  'security' => true,
  'xml' => [
    'version'         => '1.0',
    'appid'           => 'wxd678efh567hg6787',
    'mch_id'          => '1230000109',
    'sign_type'       => 'HMAC-SHA256',
    'out_order_no'    => '1234323JKHDFE1243252',
    'return_query_id' => '微信侧回跳到商户前端时用于查单的单据查询id.',
    'service_id'      => '',
  ],
]);
print_r(\WeChatPay\Transformer::toArray((string) $response->getBody()));
php
$response = $instance->chain('v2/wxv/queryhotelbill')->post([
  'security' => true,
  'xml' => [
    'version'         => '1.0',
    'appid'           => 'wxd678efh567hg6787',
    'mch_id'          => '1230000109',
    'sign_type'       => 'HMAC-SHA256',
    'out_order_no'    => '1234323JKHDFE1243252',
    'return_query_id' => '微信侧回跳到商户前端时用于查单的单据查询id.',
    'service_id'      => '',
  ],
]);
print_r(\WeChatPay\Transformer::toArray((string) $response->getBody()));
php
$response = $instance['v2/wxv/queryhotelbill']->post([
  'security' => true,
  'xml' => [
    'version'         => '1.0',
    'appid'           => 'wxd678efh567hg6787',
    'mch_id'          => '1230000109',
    'sign_type'       => 'HMAC-SHA256',
    'out_order_no'    => '1234323JKHDFE1243252',
    'return_query_id' => '微信侧回跳到商户前端时用于查单的单据查询id.',
    'service_id'      => '',
  ],
]);
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
statestring单据状态
CREATED | USER_ACCEPTED | FINISHED | USER_PAID | REVOKED | EXPIRED 枚举值之一
roomstring房间
start_timestring入住时间
end_timestring预定离店时间
service_locationstring酒店
deposit_amountinteger押金
room_rateinteger房费
room_rate_descstring房费说明
real_end_timestring实际离店时间
checked_inboolean是否入住
other_feeinteger其他费用
other_fee_descstring其他费用说明
compensation_feeinteger赔偿金费用
compensation_fee_descstring赔偿金说明
overdue_fineinteger延迟退房费
overdue_fine_descstring延迟退房说明
cancel_feeinteger取消费用
cancel_fee_descstring取消费用说明
order_idstring微信支付服务订单号
finish_ticketstring完结凭证
attachstring回调数据包
finish_transaction_idstring结单交易单号
pay_typestring支付方式
MchChannelPayType 枚举值

参阅 官方文档

Published on the GitHub by TheNorthMemory