文档中心 > API类目 > 酒店在线预订API

taobao.xhotel.future.softmodify (未来酒店信息下发)

未来酒店信息下发,包含PMS订单查询和自助入住

公共参数

请求参数

名称 类型 是否必须 示例值 更多限制 描述
expire_time Number 可选 3000 超时时长,默认3s
tid Number 可选 12343453242 淘宝订单号
out_order_id String 可选 123121 外部订单号
hotel_code String 可选 aa 酒店code
hid Number 可选 322323 酒店Id
context String 可选 请求报文 请求报文
operate_type String 必须 4 操作类型
request_id String 必须 aauucesa2342 请求唯一标识值

响应参数

名称 类型 示例值 描述
context String 响应报文 请求报文示例:https://open.alitrip.com/docs/doc.htm?spm=a21tt.7629140.0.0.Q8jazn&docType=1&articleId=104398中的自助入住请求示例(升级版)和酒店PMS信息查询 响应报文示例:https://open.alitrip.com/docs/doc.htm?docType=1&articleId=106153中的自助checkIn订单信息上传和通用PMS结果查询结果

请求示例

  • JAVA
  • .NET
  • PHP
  • CURL
  • Python
  • C/C++
  • NodeJS
TaobaoClient client = new DefaultTaobaoClient(url, appkey, secret);
XhotelFutureSoftmodifyRequest req = new XhotelFutureSoftmodifyRequest();
req.setExpireTime(3000L);
req.setTid(12343453242L);
req.setOutOrderId("123121");
req.setHotelCode("aa");
req.setHid(322323L);
req.setContext("请求报文");
req.setOperateType("4");
req.setRequestId("aauucesa2342");
XhotelFutureSoftmodifyResponse rsp = client.execute(req, sessionKey);
System.out.println(rsp.getBody());

响应示例

  • XML示例
  • JSON示例
<xhotel_future_softmodify_response>
    <context>响应报文</context>
</xhotel_future_softmodify_response>

异常示例

  • XML示例
  • JSON示例
<error_response>
    <code>50</code>
    <msg>Remote service error</msg>
    <sub_code>isv.invalid-parameter</sub_code>
    <sub_msg>非法参数</sub_msg>
</error_response>

错误码解释

错误码 错误描述 解决方案

API工具

如何获得此API

FAQ

返回
顶部