订单列表简化查询(试用)
名称 | 类型 | 是否必须 | 示例值 | 更多限制 | 描述 |
---|---|---|---|---|---|
param1 | OrderListRequest | 可选 | 入参 | ||
|
名称 | 类型 | 示例值 | 描述 |
---|---|---|---|
result | SimpleOrderListVo | 详细参考如下 | 出参 |
|
1 2 3 4 5 6 7 8 9 10 11 | TaobaoClient client = new DefaultTaobaoClient(url, appkey, secret); AliexpressTradeRedefiningFindorderlistsimplequeryRequest req = new AliexpressTradeRedefiningFindorderlistsimplequeryRequest(); AliexpressTradeRedefiningFindorderlistsimplequeryRequest.OrderListRequest obj1 = new AliexpressTradeRedefiningFindorderlistsimplequeryRequest.OrderListRequest(); obj1.setCreateDateEnd( "2015-07-10 00:00:00" ); obj1.setCreateDateStart( "2015-07-09 00:00:00" ); obj1.setPage(1L); obj1.setPageSize(20L); obj1.setOrderStatus( "PLACE_ORDER_SUCCESS" ); req.setParam1(obj1); AliexpressTradeRedefiningFindorderlistsimplequeryResponse 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 22 23 24 25 26 27 28 29 30 31 32 33 | < aliexpress_trade_redefining_findorderlistsimplequery_response > < result > < total_item >5</ total_item > < order_list > < simple_order_item_vo > < product_list > < simple_order_product_vo > < money_back3x >false</ money_back3x > < sku_code >1114</ sku_code > < product_unit_price_cur >USD</ product_unit_price_cur > < product_unit_price >300.0</ product_unit_price > < product_count >1</ product_count > < product_name >test</ product_name > < product_id >1096151852</ product_id > < son_order_status >PLACE_ORDER_SUCCESS</ son_order_status > < product_unit >piece</ product_unit > < goods_prepare_time >30</ goods_prepare_time > < child_id >30025745255804</ child_id > </ simple_order_product_vo > </ product_list > < memo >information</ memo > < timeout_left_time >-1160095430</ timeout_left_time > < biz_type >AE_COMMON</ biz_type > < order_status >PLACE_ORDER_SUCCESS</ order_status > < gmt_modified >2015-07-09 22:14:21</ gmt_modified > < gmt_create >2015-07-09 22:14:25</ gmt_create > < order_id >30025745255804</ order_id > </ simple_order_item_vo > </ order_list > </ result > </ aliexpress_trade_redefining_findorderlistsimplequery_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 > |
错误码 | 错误描述 | 解决方案 |
---|