Get Report Data - XML File
Parameters
Output Columns
Label | Data Type (SSIS) | Data Type (SQL) | Length | Raw | 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 Selling Partner (SP-API) Connector.
Input Columns
Label | Data Type (SSIS) | Data Type (SQL) | Length | Raw | Description | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
There are no Static columns defined for this endpoint. This endpoint detects columns dynamically at runtime. |
Examples
SSIS
Use Amazon Selling Partner (SP-API) Connector in API Source component to read data or in API Destination component to read/write data:
Get Report Data - XML File using API Source
Amazon Selling Partner (SP-API)
Get Report Data - XML File

Get Report Data - XML File using API Destination
Amazon Selling Partner (SP-API)
Get Report Data - XML File

ODBC application
Use these SQL queries in your ODBC application data source:
Get report data - xml file
SELECT * FROM get_report_xml
WITH
(
"ReportType" = 'abcd-1234-reporttype',
"Filter" = '$.Result.Node[*]'
)
SQL Server
Use these SQL queries in SQL Server after you create a data source in Data Gateway:
Get report data - xml file
DECLARE @MyQuery NVARCHAR(MAX) = 'SELECT * FROM get_report_xml
WITH
(
"ReportType" = ''abcd-1234-reporttype'',
"Filter" = ''$.Result.Node[*]''
)';
EXEC (@MyQuery) AT [LS_TO_AMAZON_SELLING_PARTNER_SP_API_IN_GATEWAY];