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

alitrip.item.add.schema.get (获取商品发布模板)

发布飞猪度假商品时,需要先调用此接口获取商品发布的模板schema。目前支持类目:出境自由行(50278002)、境内自由行(50272002)、出境跟团游(50258005)、境内跟团游(50258004)、境外一日游/多日游(50276003)

公共参数

请求参数

名称 类型 是否必须 示例值 更多限制 描述
cat_id Number 必须 50272002 类目id

响应参数

名称 类型 示例值 描述
schema_xml_fields String <itemSchema><field id="title" name="商品标题" type="input"><rules><rule name="requiredRule" value="true"/><rule name="maxLengthRule" value="60" exProperty="include" unit="byte"/><rule name="valueTypeRule" value="text"/></rules></field></itemSchema> schema模板数据

请求示例

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

响应示例

  • XML示例
  • JSON示例
<alitrip_item_add_schema_get_response>
    <schema_xml_fields>&lt;itemSchema&gt;&lt;field id=&quot;title&quot; name=&quot;商品标题&quot; type=&quot;input&quot;&gt;&lt;rules&gt;&lt;rule name=&quot;requiredRule&quot; value=&quot;true&quot;/&gt;&lt;rule name=&quot;maxLengthRule&quot; value=&quot;60&quot; exProperty=&quot;include&quot; unit=&quot;byte&quot;/&gt;&lt;rule name=&quot;valueTypeRule&quot; value=&quot;text&quot;/&gt;&lt;/rules&gt;&lt;/field&gt;&lt;/itemSchema&gt;</schema_xml_fields>
</alitrip_item_add_schema_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>

错误码解释

错误码 错误描述 解决方案

API工具

如何获得此API

FAQ

返回
顶部