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

GetReportScheduleList

Returns a list of order report requests that are scheduled to be submitted to Amazon MWS for processing.

Description

The GetReportScheduleList operation returns a list of scheduled order report requests that match the query parameters. Only Order Reports can be scheduled. A maximum number of 100 results can be returned in one request.

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 Values
ReportTypeList A structured list of ReportType enumeration values. No Default: All

Type: xs:string

Response elements

Name Description
NextToken This element will never be returned for this operation because there can never be more than 100 report types scheduled.

Type: xs:string

HasNext A Boolean value that is always returned false because there can never be more than 100 report types scheduled.

Type: xs:boolean

ReportSchedule Detailed information about a report schedule.

Type: ReportSchedule

Examples

Example query request

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

Show example code Hide example code

POST /Reports/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=GetReportScheduleList
&MWSAuthToken=amzn.mws.4ea38b7b-f563-7709-4bae-87aeaEXAMPLE
&Marketplace=ATExampleER
&ReportTypeList.Type.1=_GET_ORDERS_DATA_
&ReportTypeList.Type.2=_GET_MERCHANT_LISTINGS_DATA
&SellerId=A1ExampleE6
&SignatureMethod=HmacSHA256
&SignatureVersion=2
&Timestamp=2009-01-07T19%3A12%3A13.859Z
&Version=2009-01-01
&Signature=ltExample8%3D

↑ Top

Example response

For information about standard response formatting, see Response format.

Show example code Hide example code

<?xml version="1.0"?>
<GetReportScheduleListResponse
    xmlns="http://mws.amazonservices.com/doc/2009-01-01/">
    <GetReportScheduleListResult>
        <NextToken></NextToken>
        <HasNext>false</HasNext>
        <ReportSchedule>
            <ReportType>_GET_ORDERS_DATA_</ReportType>
            <Schedule>_30_DAYS_</Schedule>
            <ScheduledDate>2009-02-20T02:10:42+00:00</ScheduledDate>
        </ReportSchedule>
    </GetReportScheduleListResult>
    <ResponseMetadata>
        <RequestId>c0464157-b74f-4e52-bd1a-4ebf4bc7e5aa</RequestId>
    </ResponseMetadata>
</GetReportScheduleListResponse>

↑ Top