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

GetFeedSubmissionListByNextToken

Returns a list of feed submissions using the NextToken parameter.

Description

The GetFeedSubmissionListByNextToken operation returns a list of feed submissions that match the query parameters. It uses the NextToken, which was supplied in a previous request to either the GetFeedSubmissionListByNextToken operation or the GetFeedSubmissionList operation where the value of HasNext was true.

Availability

This operation is available in all marketplaces.

Throttling

Maximum request quota Restore rate Hourly request quota
30 requests One request every two seconds 1800 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
NextToken A string token returned by a previous request to either GetFeedSubmissionList or GetFeedSubmission ListByNextToken where the value of HasNext was true. Yes Type: xs:string

Response elements

Name Description Required Valid values
NextToken A generated string used to pass information to another call. Pass the NextToken value to the GetFeedSubmissionListByNextToken operation if the value of HasNext is true. No Type: xs:string
HasNext A Boolean value that indicates whether there are more items to retrieve, requiring additional requests to GetGetFeedSubmissionListByNextToken to retrieve them. No

The value true means there are more items to retrieve; otherwise false.

Type: xs:boolean
FeedSubmissionInfo Detailed information about a feed submission. No Type: FeedSubmissionInfo

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=GetFeedSubmissionListByNextToken
&MWSAuthToken=amzn.mws.4ea38b7b-f563-7709-4bae-87aeaEXAMPLE
&Marketplace=ATExampleER
&NextToken=2YgYW55IGNhcm5hbCBwbGVhc3VyZS4=
&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"?>
<GetFeedSubmissionListByNextTokenResponse
    xmlns="http://mws.amazonaws.com/doc/2009-01-01/">
    <GetFeedSubmissionListByNextTokenResult>
        <NextToken>none</NextToken>
        <HasNext>false</HasNext>
        <FeedSubmissionInfo>
            <FeedSubmissionId>2291326430</FeedSubmissionId>
            <FeedType>_POST_PRODUCT_DATA_</FeedType>
            <SubmittedDate>2009-02-20T02:10:35+00:00</SubmittedDate>
            <FeedProcessingStatus>_SUBMITTED_</FeedProcessingStatus>
        </FeedSubmissionInfo>
    </GetFeedSubmissionListByNextTokenResult>
    <ResponseMetadata>
        <RequestId>1105b931-6f1c-4480-8e97-f3b467840a9e</RequestId>
    </ResponseMetadata>
</GetFeedSubmissionListByNextTokenResponse>

↑ Top