Amazon Selling Partner (SP-API) Connector
Documentation
Version: 1
Documentation

Table ReportTypes


Parameters

Parameter Label Required Options Description Help
There are no parameters

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

Amazon Selling Partner (SP-API)
ReportTypes
SSIS API Source - Read from table or endpoint

Read/write to ReportTypes table using API Destination

Amazon Selling Partner (SP-API)
ReportTypes
Select
SSIS API Destination - Access table operation

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 [LINKED_SERVER_TO_AMAZON_SELLING_PARTNER_SP_API_IN_DATA_GATEWAY];