注意:以下文档只适用于TOP接口,请谨慎使用!

文档中心 > API类目 > AE-Oversea-Solution

aliexpress.solution.feed.query (aliexpress.solution.feed.query)

API for query the execution result of feed.

公共参数

请求参数

名称 类型 是否必须 示例值 更多限制 描述
job_id Number 可选 200000000060054475 job id

响应参数

名称 类型 示例值 描述
job_id Number 200000000060054475 job id
success_item_count Number 1 Count of successful items after executed under this job
result_list SingleItemResponseDto [] Result list after all the item_content,which were previously submitted through API:aliexpress.solution.feed.submit, have been executed , including both successful and unsuccessful items.
  • └ item_execution_result
  • String
  • {"productId":33030372006,"success":true}
  • Execution result of each item
  • └ item_content_id
  • String
  • A00000000Y1
  • Corresponding to the item_content_id defined by the seller when invoking the API: aliexpress.solution.feed.submit
total_item_count Number 1 Count of total items under this job

请求示例

  • JAVA
  • .NET
  • PHP
  • CURL
  • Python
  • C/C++
  • NodeJS
TaobaoClient client = new DefaultTaobaoClient(url, appkey, secret);
AliexpressSolutionFeedQueryRequest req = new AliexpressSolutionFeedQueryRequest();
req.setJobId(200000000060054475L);
AliexpressSolutionFeedQueryResponse rsp = client.execute(req, sessionKey);
System.out.println(rsp.getBody());

响应示例

  • XML示例
  • JSON示例
<aliexpress_solution_feed_query_response>
    <job_id>200000000060054475</job_id>
    <success_item_count>1</success_item_count>
    <result_list>
        <single_item_response_dto>
            <item_execution_result>{&quot;productId&quot;:33030372006,&quot;success&quot;:true}</item_execution_result>
            <item_content_id>A00000000Y1</item_content_id>
        </single_item_response_dto>
    </result_list>
    <total_item_count>1</total_item_count>
</aliexpress_solution_feed_query_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

返回
顶部