查询信息模板列表
名称 | 类型 | 是否必须 | 示例值 | 更多限制 | 描述 |
---|---|---|---|---|---|
module_status | String | 可选 | approved | 要查询模块的状态,包含:tbd(审核不通过),auditing(审核中),approved(审核通过) | |
type | String | 可选 | custom | 要查询模块的类型,包含:custom(自定义模块),relation(关联模块) | |
page_index | Number | 可选 | 1 | 要查询当前页码,每页返回50条记录,从1开始 |
名称 | 类型 | 示例值 | 描述 |
---|---|---|---|
result | AeopFindModuleListResultDto | 0 | result |
|
1 2 3 4 5 6 7 | 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()); |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 | < 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 > |
1 2 3 4 5 6 | < error_response > < code >50</ code > < msg >Remote service error</ msg > < sub_code >isv.invalid-parameter</ sub_code > < sub_msg >非法参数</ sub_msg > </ error_response > |
错误码 | 错误描述 | 解决方案 |
---|