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

aliexpress.solution.feed.list.get (aliexpress.solution.feed.list.get)

API to query the feed list belonged to a seller

公共参数

请求参数

名称 类型 是否必须 示例值 更多限制 描述
current_page Number 可选 2
  • 默认值:1
  • current page
    feed_type String 可选 PRODUCT_CREATE feed type
    page_size Number 可选 50
  • 默认值:100
  • page size
    status String 可选 FINISH status of the job, currently there are 3 types: FINISH, PROCESSING, QUEUEING
    submitted_time_end String 可选 2020-11-12 06:00:00 Search for feeds submitted before a specific time, format: yyyy-MM-dd hh:mm:ss. Timezone:America/Los_Angeles
    submitted_time_start String 可选 2020-11-01 02:00:00 Search for feeds submitted after a specific time, format: yyyy-MM-dd hh:mm:ss .Timezone:America/Los_Angeles

    响应参数

    名称 类型 示例值 描述
    current_page Number 3 current page
    job_list BatchOperationJobDto [] data
    • └ status
    • String
    • PROCESSING
    • The status of the feed
    • └ operation_type
    • String
    • PRODUCT_CREATE
    • feed type
    • └ job_id
    • Number
    • 2000000000123456
    • job id
    page_size Number 20 page size
    total_count Number 300 total count of jobs submitted for this seller
    total_page Number 15 total page based on the total_count and page_size

    请求示例

    • JAVA
    • .NET
    • PHP
    • CURL
    • Python
    • C/C++
    • NodeJS
    TaobaoClient client = new DefaultTaobaoClient(url, appkey, secret);
    AliexpressSolutionFeedListGetRequest req = new AliexpressSolutionFeedListGetRequest();
    req.setCurrentPage(2L);
    req.setFeedType("PRODUCT_CREATE");
    req.setPageSize(50L);
    req.setStatus("FINISH");
    req.setSubmittedTimeEnd("2020-11-12 06:00:00");
    req.setSubmittedTimeStart("2020-11-01 02:00:00");
    AliexpressSolutionFeedListGetResponse rsp = client.execute(req, sessionKey);
    System.out.println(rsp.getBody());

    响应示例

    • XML示例
    • JSON示例
    <aliexpress_solution_feed_list_get_response>
        <current_page>3</current_page>
        <job_list>
            <batch_operation_job_dto>
                <status>PROCESSING</status>
                <operation_type>PRODUCT_CREATE</operation_type>
                <job_id>2000000000123456</job_id>
            </batch_operation_job_dto>
        </job_list>
        <page_size>20</page_size>
        <total_count>300</total_count>
        <total_page>15</total_page>
    </aliexpress_solution_feed_list_get_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

    返回
    顶部