感谢您的反馈!
慧飞商家协同单列表查询接口
名称 | 类型 | 是否必须 | 示例值 | 更多限制 | 描述 |
---|---|---|---|---|---|
coordination_list_request_dto | CoordinationListRequestDTO | 必须 | 协同单列表查询参数 | ||
|
名称 | 类型 | 示例值 | 描述 |
---|---|---|---|
result | PageDTO | 协同单列表查询结果 | |
|
TaobaoClient client = new DefaultTaobaoClient(url, appkey, secret); AlitripAgentCoordinateListRequest req = new AlitripAgentCoordinateListRequest(); AlitripAgentCoordinateListRequest.CoordinationListRequestDTO obj1 = new AlitripAgentCoordinateListRequest.CoordinationListRequestDTO(); obj1.setStartIndex(0L); obj1.setPageSize(20L); obj1.setStatusList("2"); obj1.setCaseTypeList("3"); obj1.setCreateGmtBegin(StringUtils.parseDateTime("2022-09-14 00:00:00")); obj1.setCreateGmtEnd(StringUtils.parseDateTime("2022-09-15 00:00:00")); obj1.setCorrelationOutOrderId("10000000001"); obj1.setDomesticIntl(1L); req.setCoordinationListRequestDto(obj1); AlitripAgentCoordinateListResponse rsp = client.execute(req, sessionKey); System.out.println(rsp.getBody());
<alitrip_agent_coordinate_list_response> <result> <total>20</total> <data_list> <t> <id>300001</id> <gmt_create>2022-09-14 00:00:00</gmt_create> <gmt_modified>2022-09-15 00:00:00</gmt_modified> <case_type>3</case_type> <status>2</status> <current_follower_name>张三</current_follower_name> <title>标题</title> <serve_deadline>2022-09-15 00:00:00</serve_deadline> <urge>0</urge> <correlation_out_order_id>10000000001</correlation_out_order_id> <correlation_biz_type>1</correlation_biz_type> </t> </data_list> <success>true</success> <error_code>001</error_code> <error_msg>非法参数</error_msg> </result> </alitrip_agent_coordinate_list_response>
<error_response> <code>50</code> <msg>Remote service error</msg> <sub_code>isv.invalid-parameter</sub_code> <sub_msg>非法参数</sub_msg> </error_response>
错误码 | 错误描述 | 解决方案 |
---|