文档中心 > API类目 > 酒店商品API

taobao.xhotel.multiplerate.delete (复杂价格删除)

酒店产品库rate删除

公共参数

请求参数

名称 类型 是否必须 示例值 更多限制 描述
vendor String 可选 taobao 渠道,和推送房价所使用的渠道保持一致
rateplan_code String 必须 12345AAA 商家价格政策编码
out_rid String 必须 12345AAA 商家房型编码
occupancy Number 可选 1 连住天数
lengthofstay Number 可选 2 入住人数

响应参数

名称 类型 示例值 描述
result ResultSet null result
  • └ error_code
  • String
  • null
  • errorCode
  • └ error_msg
  • String
  • null
  • errorMsg
  • └ out_rid_rateplan_code_occupancy_lengthofstay
  • String
  • out_rid:1,rateplan_code:2,occupancy:1,lengthofstay:2
  • 房型编码_房价编码_入住人数_连住天数

请求示例

  • JAVA
  • .NET
  • PHP
  • CURL
  • Python
  • C/C++
  • NodeJS
TaobaoClient client = new DefaultTaobaoClient(url, appkey, secret);
XhotelMultiplerateDeleteRequest req = new XhotelMultiplerateDeleteRequest();
req.setVendor("taobao");
req.setRateplanCode("12345AAA");
req.setOutRid("12345AAA");
req.setOccupancy(1L);
req.setLengthofstay(2L);
XhotelMultiplerateDeleteResponse rsp = client.execute(req, sessionKey);
System.out.println(rsp.getBody());

响应示例

  • XML示例
  • JSON示例
<xhotel_multiplerate_delete_response>
    <result>
        <error_code>null</error_code>
        <error_msg>null</error_msg>
        <out_rid_rateplan_code_occupancy_lengthofstay>out_rid:1,rateplan_code:2,occupancy:1,lengthofstay:2</out_rid_rateplan_code_occupancy_lengthofstay>
    </result>
</xhotel_multiplerate_delete_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

返回
顶部