获取纠纷列表
名称 | 类型 | 是否必须 | 示例值 | 更多限制 | 描述 |
---|---|---|---|---|---|
query_dto | IssueApiListQueryDto | 可选 | 详情描述如下 | ||
|
名称 | 类型 | 示例值 | 描述 |
---|---|---|---|
current_page | Number | 1 | 当前页 |
data_list | IssueApiIssueDto [] | 详细参考如下 | dataList |
|
|||
page_size | Number | 10 | 每页条数 |
total_item | Number | 31 | 总记录数 |
1 2 3 4 5 6 7 8 9 10 11 | TaobaoClient client = new DefaultTaobaoClient(url, appkey, secret); AliexpressIssueIssuelistGetRequest req = new AliexpressIssueIssuelistGetRequest(); AliexpressIssueIssuelistGetRequest.IssueApiListQueryDto obj1 = new AliexpressIssueIssuelistGetRequest.IssueApiListQueryDto(); obj1.setBuyerLoginId( "tom" ); obj1.setCurrentPage(1L); obj1.setIssueStatus( "processing" ); obj1.setOrderNo(5566778899L); obj1.setPageSize(10L); req.setQueryDto(obj1); AliexpressIssueIssuelistGetResponse 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 | < aliexpress_issue_issuelist_get_response > < current_page >1</ current_page > < data_list > < issue_api_issue_dto > < buyer_login_id >tom</ buyer_login_id > < gmt_create >2018-03-12 12:12:12</ gmt_create > < gmt_modified >2018-03-12 12:12:12</ gmt_modified > < issue_id >11111222</ issue_id > < issue_status >processing</ issue_status > < order_id >11122</ order_id > < parent_order_id >222333</ parent_order_id > < reason_chinese >哈哈</ reason_chinese > < reason_english >test</ reason_english > </ issue_api_issue_dto > </ data_list > < page_size >10</ page_size > < total_item >31</ total_item > </ aliexpress_issue_issuelist_get_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 > |
错误码 | 错误描述 | 解决方案 |
---|