Reference

Endpoint Get XML Report By ID - Cached Copy (Previously Generated)


Name

GetReportXml

Description

No description available

Parameters

Parameter Required Options
Name: ReportId

Label: ReportId

Enter Report ID returned by GetReportRequestList (With status of _DONE_ or _DONE_NO_DATA_) or GetReportList (only done reports)
YES
Name: Version

Label: Version

Output 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.
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 XML Report By ID - Cached Copy (Previously Generated)
Required Parameters
ReportId Fill-in the parameter...
Optional Parameters
Version 2009-01-01
ElementsToTreatAsArray Message
DateParseHandling DateTime
SSIS API Source - Read from table or endpoint

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 XML Report By ID - Cached Copy (Previously Generated)
Required Parameters
ReportId Fill-in the parameter...
Optional Parameters
Version 2009-01-01
ElementsToTreatAsArray Message
DateParseHandling DateTime
SSIS API Destination - Access table or endpoint

ODBC application

Use these SQL queries in your ODBC application data source:

Get xml report by id - cached copy

SELECT * FROM GetReportXml
WITH
(
    "ReportId" = 'abcd-1234-reportid'
)

SQL Server

Use these SQL queries in SQL Server after you create a data source in Data Gateway:

Get xml report by id - cached copy

DECLARE @MyQuery NVARCHAR(MAX) = 'SELECT * FROM GetReportXml
WITH
(
    "ReportId" = ''abcd-1234-reportid''
)';

EXEC (@MyQuery) AT [LS_TO_AMAZON_MWS_IN_GATEWAY];