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

taobao.xhotel.item.selection.seller.stat.exposure (选品曝光趋势)

用于提供给商家获取选品曝光趋势

公共参数

请求参数

名称 类型 是否必须 示例值 更多限制 描述
date String 可选 20200203 日期 默认为昨天
hid String 可选 123526667 hid 默认为all
vendor String 可选 taobao 默认为all
supplier String 可选 taobao 默认为all
out_hid String 可选 Hotel_code 酒店编码

响应参数

名称 类型 示例值 描述
result Result 复杂对象 接口返回model
  • └ code
  • String
  • 错误码
  • 错误码
  • └ success
  • Boolean
  • true
  • 是否成功
  • module
  • Module
  • 复杂对象
  • 返回结果
  • seller_stat_exposure_element_list
  • SellerStatExposureElementList []
  • 复杂对象
  • 返回结果
  • └ stat_date
  • String
  • 20200203
  • 日期
  • └ exposed_percent
  • String
  • 2.344
  • 曝光率
  • └ shid_total_amount
  • String
  • 25353
  • shid维度访问量
  • └ exposed_amount
  • String
  • 12222
  • 对应商品曝光数量
  • └ message
  • String
  • 错误信息
  • 接口信息

请求示例

  • JAVA
  • .NET
  • PHP
  • CURL
  • Python
  • C/C++
  • NodeJS
TaobaoClient client = new DefaultTaobaoClient(url, appkey, secret);
XhotelItemSelectionSellerStatExposureRequest req = new XhotelItemSelectionSellerStatExposureRequest();
req.setDate("20200203");
req.setHid("123526667");
req.setVendor("taobao");
req.setSupplier("taobao");
req.setOutHid("Hotel_code");
XhotelItemSelectionSellerStatExposureResponse rsp = client.execute(req, sessionKey);
System.out.println(rsp.getBody());

响应示例

  • XML示例
  • JSON示例
<xhotel_item_selection_seller_stat_exposure_response>
    <result>
        <code>错误码</code>
        <success>true</success>
        <module>
            <seller_stat_exposure_element_list>
                <seller_stat_exposure_element_list>
                    <stat_date>20200203</stat_date>
                    <exposed_percent>2.344</exposed_percent>
                    <shid_total_amount>25353</shid_total_amount>
                    <exposed_amount>12222</exposed_amount>
                </seller_stat_exposure_element_list>
            </seller_stat_exposure_element_list>
        </module>
        <message>错误信息</message>
    </result>
</xhotel_item_selection_seller_stat_exposure_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

返回
顶部