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

taobao.xhotel.entity.config (飞猪商品各实体通用配置)

飞猪商品各实体通用配置服务

公共参数

请求参数

名称 类型 是否必须 示例值 更多限制 描述
entity_code String 可选 abc 实体编码,例如酒店编码,房价编码
config_data String 可选 [{"invoice_provider":"2"}] 格式为:[{"invoice_provider":"2"}] key-value形式的配置信息其中invoice_provider发票提供方1(酒店提供),2(卖家邮寄)。其余开票信息统一在卖家或酒店后台手动配置,此接口不做参数传输。
vendor String 可选 taobao 默认是taobao。和酒店,房型等实体上的vendor保持一致。
entity_id Number 可选 123 实体id,例如酒店id,房型id(飞猪平台的id),rpid等,目前仅支持hid
type Number 可选 5
  • 默认值:0
  • 实体类型:1:卖家维度,2:酒店维度,3:房型维度,4:宝贝维度,5:rp维度。请注意目前仅支持类型2

    响应参数

    名称 类型 示例值 描述

    请求示例

    • JAVA
    • .NET
    • PHP
    • CURL
    • Python
    • C/C++
    • NodeJS
    TaobaoClient client = new DefaultTaobaoClient(url, appkey, secret);
    XhotelEntityConfigRequest req = new XhotelEntityConfigRequest();
    req.setEntityCode("abc");
    req.setConfigData("[{\"invoice_provider\":\"2\"}]");
    req.setVendor("taobao");
    req.setEntityId(123L);
    req.setType(5L);
    XhotelEntityConfigResponse rsp = client.execute(req, sessionKey);
    System.out.println(rsp.getBody());

    响应示例

    • XML示例
    • JSON示例
    <xhotel_entity_config_response>
    </xhotel_entity_config_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

    返回
    顶部