Amazon Services
Amazon Marketplace Web Service (Amazon MWS) Documentation

Deprecation Notice:

Amazon Marketplace Web Service (MWS) will no longer be available after March 31, 2024. All MWS developers must migrate to Selling Partner API (SP-API) to avoid service disruptions. Refer to the Migration Hub for more information.

Amazon MWS Documentation

GetFeedSubmissionList

Returns a list of all feed submissions submitted in the previous 90 days.

Description

The GetFeedSubmissionList operation returns a list of feed submissions submitted in the previous 90 days that match the query parameters. Use this operation to determine the status of a feed submission by passing in the FeedProcessingId that was returned by the SubmitFeed operation.

The GetFeedSubmissionList request can return a maximum of 100 results. If there are additional results to return, HasNext is returned in the response with a true value. To retrieve all the results, you can pass the value of the NextToken parameter to the GetFeedSubmissionListByNextToken operation and repeat until HasNext is false.

Availability

This operation is available in all marketplaces.

Throttling

Maximum request quota Restore rate Hourly request quota
10 requests One request every 45 seconds 80 requests per hour
For definitions of throttling terminology and for a complete explanation of throttling, see Throttling: Limits to how often you can submit requests in the Amazon MWS Developer Guide.

Request parameters

For more information about the request parameters that are required for all Amazon MWS operations, see Required request parameters in the Amazon MWS Developer Guide.

Name Description Required Valid Values
FeedSubmissionIdList A structured list of no more than 100 FeedSubmmissionId values. If you pass in FeedSubmmissionId values in a request, other query conditions are ignored. No Default: All

Type: xs:string

MaxCount A non-negative integer that indicates the maximum number of feed submissions to return in the list. If you specify a number greater than 100, the request is rejected. No Default: 10

Type: xs:nonNegativeInteger

FeedTypeList A structured list of one or more FeedType values by which to filter the list of feed submissions. No Default: All feed types

Type: xs:string

FeedProcessingStatusList A structured list of one or more feed processing statuses by which to filter the list of feed submissions. No Default: All feed processing status types. For valid values, see FeedProcessingStatus enumeration.

Type: xs:string

SubmittedFromDate The earliest submission date that you are looking for, in ISO8601 date format. No Default: 90 days ago

In ISO 8601 date time format.

Type: xs:dateTime

SubmittedToDate The latest submission date that you are looking for, in ISO8601 date format. No Default: Now

In ISO 8601 date time format.

Type: xs:dateTime

Response elements

Name Description Required Valid Values
NextToken A generated string used to pass information to another call. Pass the NextToken value to the

For information about standard request requirements, see Required request parameters.

GetFeedSubmissionListByNextToken operation if the value of HasNext is true.
No Type: xs:string
SubmittedFromDate The earliest submission date that you are looking for, in ISO8601 date format. No Default: 90 days ago

In ISO 8601 date time format.

Type: xs:dateTime

SubmittedToDate The latest submission date that you are looking for, in ISO8601 date format. No Default: Now

In ISO 8601 date time format.

Type: xs:dateTime

Examples

Example query request

For more information about the request parameters that are required for all Amazon MWS operations, see Required request parameters in the Amazon MWS Developer Guide.

Show example code Hide example code

POST /Feeds/2009-01-01 HTTP/1.1
Content-Type: x-www-form-urlencoded
Host: mws.amazonservices.com
User-Agent: <Your User Agent Header>

AWSAccessKeyId=0PExampleR2
&Action=GetFeedSubmissionList
&FeedProcessingStatusList.Status.1=_DONE_
&FeedSubmissionIdList.Id.1=1058369303
&FeedSubmissionIdList.Id.2=1228369302
&FeedTypeList.Type.1=_POST_PRODUCT_DATA_
&FeedTypeList.Type.2=_POST_PRODUCT_PRICING_DATA_
&MWSAuthToken=amzn.mws.4ea38b7b-f563-7709-4bae-87aeaEXAMPLE
&Marketplace=ATExampleER
&SellerId=A1ExampleE6
&SignatureMethod=HmacSHA256
&SignatureVersion=2
&Timestamp=2009-02-04T15%3A51%3A49.015Z
&Version=2009-01-01
&Signature=BXExampleo%3D

↑ Top

Example response

Amazon MWS returns an XML file that contains the response to a successful request or subscription. If the request is unsuccessful, the main response element is ErrorResponse. For more information, see Response format in the Amazon MWS Developer Guide.

Show example code Hide example code

<?xml version="1.0"?>
<GetFeedSubmissionListResponse
    xmlns="http://mws.amazonaws.com/doc/2009-01-01/">
    <GetFeedSubmissionListResult>
        <NextToken>2YgYW55IGNhcm5hbCBwbGVhc3VyZS4=</NextToken>
        <HasNext>true</HasNext>
        <FeedSubmissionInfo>
            <FeedSubmissionId>2291326430</FeedSubmissionId>
            <FeedType>_POST_PRODUCT_DATA_</FeedType>
            <SubmittedDate>2009-02-20T02:10:35+00:00</SubmittedDate>
            <FeedProcessingStatus>_SUBMITTED_</FeedProcessingStatus>
        </FeedSubmissionInfo>
    </GetFeedSubmissionListResult>
    <ResponseMetadata>
        <RequestId>1105b931-6f1c-4480-8e97-f3b467840a9e</RequestId>
    </ResponseMetadata>
</GetFeedSubmissionListResponse>

↑ Top