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)
Read and write Amazon Selling Partner (SP-API) data effortlessly. Integrate, manage, and automate listings, orders, payments, and reports — almost no coding required.
Amazon Selling Partner (SP-API)
ReportTypes
| Optional Parameters | |
|---|---|
| Filter | |
Read/write to ReportTypes table using API Destination
API Destination - Amazon Selling Partner (SP-API)
Read and write Amazon Selling Partner (SP-API) data effortlessly. Integrate, manage, and automate listings, orders, payments, and reports — almost no coding required.
Amazon Selling Partner (SP-API)
ReportTypes
Select
| Optional Parameters | |
|---|---|
| Filter | |
ODBC application
Use these SQL queries in your ODBC application data source:
List report types
<p>List available report types. Use these when requesting or downloading reports (e.g. TSV, CSV, XML, or file download).</p>
SELECT * FROM ReportTypes
SQL Server
Use these SQL queries in SQL Server after you create a data source in Data Gateway:
List report types
<p>List available report types. Use these when requesting or downloading reports (e.g. TSV, CSV, XML, or file download).</p>
DECLARE @MyQuery NVARCHAR(MAX) = 'SELECT * FROM ReportTypes';
EXEC (@MyQuery) AT [LS_TO_AMAZON_SELLING_PARTNER_SP_API_IN_GATEWAY];