文档中心 > API类目 > 度假-商品管理API

taobao.alitrip.travel.baseinfo.cities.get (【API3.0】度假线路商品发布时基础信息获取接口:地址数据查询)

旅行度假新商品发布时可用的扩展接口,用于获取可用的出发地或目的地城市列表。

公共参数

请求参数

名称 类型 是否必须 示例值 更多限制 描述
ioc_type Number 必须 1 1-获取目的地城市列表 2-获取出发地城市列表
cat_type Number 必须 1 1-境内跟团游 2-境内自由行 3-出境跟团游 4-出境自由行 5-境外当地玩乐 6-国际邮轮 9-境内邮轮

响应参数

名称 类型 示例值 描述
ioc_infos String [ { "name": "丹麦", "city": [ "欧登塞", "奥胡斯", "哥本哈根" ] } ] 地区级联城市列表,返回数据为json数组结构的字符串

请求示例

  • JAVA
  • .NET
  • PHP
  • CURL
  • Python
  • C/C++
  • NodeJS
TaobaoClient client = new DefaultTaobaoClient(url, appkey, secret);
AlitripTravelBaseinfoCitiesGetRequest req = new AlitripTravelBaseinfoCitiesGetRequest();
req.setIocType(1L);
req.setCatType(1L);
AlitripTravelBaseinfoCitiesGetResponse rsp = client.execute(req, sessionKey);
System.out.println(rsp.getBody());

响应示例

  • XML示例
  • JSON示例
<alitrip_travel_baseinfo_cities_get_response>
    <ioc_infos>[   {     &quot;name&quot;: &quot;丹麦&quot;,     &quot;city&quot;: [       &quot;欧登塞&quot;,       &quot;奥胡斯&quot;,       &quot;哥本哈根&quot;     ]   } ]</ioc_infos>
</alitrip_travel_baseinfo_cities_get_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>

错误码解释

错误码 错误描述 解决方案
isp.remote-service-error 系统错误 联系服务提供方
isv.invalid-parameter:NOTNULL 参数不能为空参数不能为空 调用方排查

API工具

如何获得此API

FAQ

返回
顶部