Table ReportTypes
Description
No description available
Supported Operations
Below section contains supported CRUD operations. Each operation is executed by some EndPoint behind the scene.Method | Supported | Reference EndPoint |
---|---|---|
SELECT | get_report_types | |
INSERT | ||
UPDATE | ||
UPSERT | ||
DELETE | ||
LOOKUP |
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:
Read from ReportTypes table using API Source
API Source - Amazon Selling Partner (SP-API)
Amazon Selling Partner Connector (SP-API) can be used to integrated SP-API that helps Amazon sellers to programmatically exchange data on listings, orders, payments, reports, and more.
Amazon Selling Partner (SP-API)
ReportTypes
Optional Parameters | |
---|---|
Filter |

Read/write to ReportTypes table using API Destination
API Destination - Amazon Selling Partner (SP-API)
Amazon Selling Partner Connector (SP-API) can be used to integrated SP-API that helps Amazon sellers to programmatically exchange data on listings, orders, payments, reports, and more.
Amazon Selling Partner (SP-API)
ReportTypes
Select
Optional Parameters | |
---|---|
Filter |

ODBC application
Use these SQL queries in your ODBC application data source:
Get Report Types
Lists report types which you can use for download_report / get_report_tsv / get_report_csv or get_report_xml endpoints
SELECT * FROM ReportTypes)
SQL Server
Use these SQL queries in SQL Server after you create a data source in Data Gateway:
Get Report Types
Lists report types which you can use for download_report / get_report_tsv / get_report_csv or get_report_xml endpoints
DECLARE @MyQuery NVARCHAR(MAX) = 'SELECT * FROM ReportTypes)';
EXEC (@MyQuery) AT [LS_TO_AMAZON_SELLING_PARTNER_SP_API_IN_GATEWAY];