文档中心 > API类目 > 全球速卖通-商品管理

aliexpress.postproduct.redefining.findaeproductdetailmodulelistbyqurey (查询信息模板列表)

查询信息模板列表

公共参数

请求参数

名称 类型 是否必须 示例值 更多限制 描述
module_status String 可选 approved 要查询模块的状态,包含:tbd(审核不通过),auditing(审核中),approved(审核通过)
type String 可选 custom 要查询模块的类型,包含:custom(自定义模块),relation(关联模块)
page_index Number 可选 1 要查询当前页码,每页返回50条记录,从1开始

响应参数

名称 类型 示例值 描述
result AeopFindModuleListResultDto 0 result
  • aeop_detail_module_list
  • Aeopdetailmodulelist []
  • [{"id":2194354,"moduleContents":"1350593917,1354823930,1353525682","status":"approved","name":"test123456","type":"relation","aliMemberId":200042360},{"id":2088506,"moduleContents":"<p></p>","status":"approved","name":"testcc111","type":"custom","aliMemberId":200042360}]
  • 模块信息列表
  • └ ali_member_id
  • Number
  • 1006680305
  • 卖家主账户的ID
  • └ display_content
  • String
  • hello content
  • 模块的内容(已废弃)
  • └ id
  • Number
  • 123
  • 模块ID
  • └ module_contents
  • String
  • hello content
  • 模块的内容
  • └ name
  • String
  • hello
  • 模块名称
  • └ status
  • String
  • status
  • 模块的状态
  • └ type
  • String
  • custom
  • 模块的类型
  • └ current_page
  • Number
  • 1
  • 当前页号
  • └ error_msg
  • String
  • 0
  • 错误信息
  • └ success
  • Boolean
  • true
  • 接口调用结果。true/false分别表示成功和失败。
  • └ total_page
  • Number
  • 10
  • 总页数
  • └ error_code
  • Number
  • 16009999
  • 错误代码
  • └ error_message
  • String
  • 系统异常!
  • error_message

请求示例

  • JAVA
  • .NET
  • PHP
  • CURL
  • Python
  • C/C++
  • NodeJS
TaobaoClient client = new DefaultTaobaoClient(url, appkey, secret);
AliexpressPostproductRedefiningFindaeproductdetailmodulelistbyqureyRequest req = new AliexpressPostproductRedefiningFindaeproductdetailmodulelistbyqureyRequest();
req.setModuleStatus("approved");
req.setType("custom");
req.setPageIndex(1L);
AliexpressPostproductRedefiningFindaeproductdetailmodulelistbyqureyResponse rsp = client.execute(req, sessionKey);
System.out.println(rsp.getBody());

响应示例

  • XML示例
  • JSON示例
<aliexpress_postproduct_redefining_findaeproductdetailmodulelistbyqurey_response>
    <result>
        <aeop_detail_module_list>
            <aeopdetailmodulelist>
                <ali_member_id>1006680305</ali_member_id>
                <display_content>hello content</display_content>
                <id>123</id>
                <module_contents>hello content</module_contents>
                <name>hello</name>
                <status>status</status>
                <type>custom</type>
            </aeopdetailmodulelist>
        </aeop_detail_module_list>
        <current_page>1</current_page>
        <error_msg>0</error_msg>
        <success>true</success>
        <total_page>10</total_page>
        <error_code>16009999</error_code>
        <error_message>系统异常!</error_message>
    </result>
</aliexpress_postproduct_redefining_findaeproductdetailmodulelistbyqurey_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

返回
顶部