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

taobao.xhotel.city.coordinates.batch.download (下载飞猪国际城市结果)

给国际酒店供应商提供计算对应飞猪城市的服务,免去城市名称匹配流程,加快对接流程

公共参数

请求参数

名称 类型 是否必须 示例值 更多限制 描述
batch_id Number 可选 25245 上传的经纬度批次号

响应参数

名称 类型 示例值 描述
coordinate_list Coordinate [] 经纬度计算结果列表
  • └ batch_id
  • Number
  • 25245
  • 批次号
  • └ city
  • Number
  • 904976
  • 飞猪城市编码
  • └ city_cn_name
  • String
  • 曼谷 (及其周边地区)
  • 飞猪城市中文名称
  • └ city_en_name
  • String
  • Bangkok (and vicinity)
  • 飞猪城市英文名称
  • └ country
  • Number
  • 900170
  • 飞猪国家编码
  • └ outer_id
  • String
  • 8554
  • 外部经纬度标识id,可以是酒店或城市的id

请求示例

  • JAVA
  • .NET
  • PHP
  • CURL
  • Python
  • C/C++
  • NodeJS
TaobaoClient client = new DefaultTaobaoClient(url, appkey, secret);
XhotelCityCoordinatesBatchDownloadRequest req = new XhotelCityCoordinatesBatchDownloadRequest();
req.setBatchId(25245L);
XhotelCityCoordinatesBatchDownloadResponse rsp = client.execute(req, sessionKey);
System.out.println(rsp.getBody());

响应示例

  • XML示例
  • JSON示例
<xhotel_city_coordinates_batch_download_response>
    <coordinate_list>
        <coordinate>
            <batch_id>25245</batch_id>
            <city>904976</city>
            <city_cn_name>曼谷 (及其周边地区)</city_cn_name>
            <city_en_name>Bangkok (and vicinity)</city_en_name>
            <country>900170</country>
            <outer_id>8554</outer_id>
        </coordinate>
    </coordinate_list>
</xhotel_city_coordinates_batch_download_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

返回
顶部