Endpoint Get Report Requests
Name
GetReportRequestList
Description
Returns a list of report requests that you can use to get the ReportRequestId for a report. [API reference]
Parameters
Parameter | Required | Options | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Name:
Label: Version |
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Name:
Label: ReportTypeList |
|
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Name:
Label: MaxCount Maximum number of report requests to return. If you specify a number greater than 100, the request is rejected. Default is 100 if you do not enter. |
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Name:
Label: ReportStatus A structured list of report processing statuses by which to filter report requests. Default is All |
|
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Name:
Label: RequestedFromDate The earliest date you are looking for. Date format must be UTC - ISO 8601 format (e.g. 2017-02-10T12:10:02Z) |
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Name:
Label: RequestedToDate The most recent date you are looking for. Date format must be UTC - ISO 8601 format (e.g. 2017-02-10T12:10:02Z) |
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Name:
Label: ReportRequestId If you like to check status of specific ReportRequestId then enter here |
Output Columns
Label | Data Type (SSIS) | Data Type (SQL) | Length | Description |
---|---|---|---|---|
ReportRequestId |
DT_I8
|
bigint
|
||
ReportType |
DT_WSTR
|
nvarchar(220)
|
220 | |
Acknowledged |
DT_BOOL
|
bit
|
||
GeneratedReportId |
DT_I8
|
bigint
|
||
StartDate |
DT_DBTIMESTAMP
|
datetime
|
||
EndDate |
DT_DBTIMESTAMP
|
datetime
|
||
ReportProcessingStatus |
DT_WSTR
|
nvarchar(50)
|
50 | |
SubmittedDate |
DT_DBTIMESTAMP
|
datetime
|
||
StartedProcessingDate |
DT_DBTIMESTAMP
|
datetime
|
||
CompletedDate |
DT_DBTIMESTAMP
|
datetime
|
If the column you are looking for is missing, consider customizing Amazon MWS Connector.
Input Columns
Label | Data Type (SSIS) | Data Type (SQL) | Length | Description | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
There are no Static columns defined for this endpoint. This endpoint detects columns dynamically at runtime. |
Examples
SSIS
Use Amazon MWS Connector in API Source or in API Destination SSIS Data Flow components to read or write data.
API Source
API Source - Amazon MWS
Amazon MWS (Marketplace Web Service) Connector can be used to integrated web service API that helps Amazon sellers to programmatically exchange data on listings, orders, payments, reports, and more.
Amazon MWS
Get Report Requests
Optional Parameters | |
---|---|
Version | 2009-01-01 |
ReportTypeList | |
MaxCount | |
ReportStatus | |
RequestedFromDate | |
RequestedToDate | |
ReportRequestId | |
ElementsToTreatAsArray | ReportRequestInfo |

API Destination
API Destination - Amazon MWS
Amazon MWS (Marketplace Web Service) Connector can be used to integrated web service API that helps Amazon sellers to programmatically exchange data on listings, orders, payments, reports, and more.
Amazon MWS
Get Report Requests
Optional Parameters | |
---|---|
Version | 2009-01-01 |
ReportTypeList | |
MaxCount | |
ReportStatus | |
RequestedFromDate | |
RequestedToDate | |
ReportRequestId | |
ElementsToTreatAsArray | ReportRequestInfo |

ODBC application
Use these SQL queries in your ODBC application data source:
Get report requests
SELECT * FROM GetReportRequestList
SQL Server
Use these SQL queries in SQL Server after you create a data source in Data Gateway:
Get report requests
DECLARE @MyQuery NVARCHAR(MAX) = 'SELECT * FROM GetReportRequestList';
EXEC (@MyQuery) AT [LS_TO_AMAZON_MWS_IN_GATEWAY];