Reference

Table MarketPlaceParticipations


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_marketplaceparticipations
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 MarketPlaceParticipations 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)
MarketPlaceParticipations
There are no parameters to configure.
SSIS API Source - Read from table or endpoint

Read/write to MarketPlaceParticipations 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)
MarketPlaceParticipations
Select
There are no parameters to configure.
SSIS API Destination - Access table operation

ODBC application

Use these SQL queries in your ODBC application data source:

Get MarketPlaceParticipations

SELECT * FROM MarketPlaceParticipations

SQL Server

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

Get MarketPlaceParticipations

DECLARE @MyQuery NVARCHAR(MAX) = 'SELECT * FROM MarketPlaceParticipations';

EXEC (@MyQuery) AT [LS_TO_AMAZON_SELLING_PARTNER_SP_API_IN_GATEWAY];