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

GetFeedSubmissionCount

Returns a count of the feeds submitted in the previous 90 days.

Description

The GetFeedSubmissionCount operation returns a count of the total number of feeds submitted in the previous 90 days.

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
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
Count The total number of feed submissions that match the request parameters. Yes Type: xs:nonNegativeInteger

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=GetFeedSubmissionCount
&FeedProcessingStatusList.Status.1=_DONE_
&FeedProcessingStatusList.Status.2=_CANCELLED_
&FeedTypeList.Type.1=_POST_PRODUCT_DATA_
&MWSAuthToken=amzn.mws.4ea38b7b-f563-7709-4bae-87aeaEXAMPLE
&Marketplace=ATExampleER
&SellerId=A1ExampleE6
&SignatureMethod=HmacSHA256
&SignatureVersion=2
&Timestamp=2009-02-04T15%3A51%3A49.312Z
&Version=2009-01-01
&Signature=ewExampleU%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"?>
<GetFeedSubmissionCountResponse
    xmlns="http://mws.amazonaws.com/doc/2009-01-01/">
    <GetFeedSubmissionCountResult>
        <Count>463</Count>
    </GetFeedSubmissionCountResult>
    <ResponseMetadata>
        <RequestId>21e482a8-15c7-4da3-91a4-424995ed0756</RequestId>
    </ResponseMetadata>
</GetFeedSubmissionCountResponse>

↑ Top