Endpoint Get Report List (Successful Only)
Name
GetReportList
Description
Returns a list of reports that were created in the previous 90 days. [API reference]
Parameters
Parameter | Required | Options | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Name:
Label: ReportTypeList |
|
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Name:
Label: Acknowledged A Boolean value that indicates if an order report has been acknowledged by a prior call to UpdateReportAcknowledgements. Set to true to list order reports that have been acknowledged; set to false to list order reports that have not been acknowledged. This filter is valid only with order reports; it does not work with listing reports. |
|
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Name:
Label: AvailableFromDate The earliest date you are looking for. Date format must be UTC - ISO 8601 format (e.g. 2017-02-10T12:10:02Z) |
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Name:
Label: AvailableToDate The most recent date you are looking for. Date format must be UTC - ISO 8601 format (e.g. 2017-02-10T12:10:02Z) |
Output Columns
Label | Data Type (SSIS) | Data Type (SQL) | Length | Description |
---|---|---|---|---|
ReportId |
DT_I8
|
bigint
|
||
ReportType |
DT_WSTR
|
nvarchar(220)
|
220 | |
Acknowledged |
DT_BOOL
|
bit
|
||
ReportRequestId |
DT_I8
|
bigint
|
||
AvailableDate |
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 List (Successful Only)
Optional Parameters | |
---|---|
NextUrlAttributeOrExpr | $.GetReportList[$tag$]Response.GetReportList[$tag$]Result.NextToken |
ElementsToTreatAsArray | ReportInfo |
NextUrlWaitInMs | 2000 |
ReportTypeList | |
Acknowledged | |
AvailableFromDate | |
AvailableToDate |

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 List (Successful Only)
Optional Parameters | |
---|---|
NextUrlAttributeOrExpr | $.GetReportList[$tag$]Response.GetReportList[$tag$]Result.NextToken |
ElementsToTreatAsArray | ReportInfo |
NextUrlWaitInMs | 2000 |
ReportTypeList | |
Acknowledged | |
AvailableFromDate | |
AvailableToDate |

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