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

Get Market Place Participations


Name

get_marketplaceparticipations

Description

No description available

Related Tables

MarketPlaceParticipations

Parameters

Parameter Label Required Options Description
There are no parameters

Output Columns

Label Data Type (SSIS) Data Type (SQL) Length Raw Description
Id DT_WSTR nvarchar(56) 56 False
CountryCode DT_WSTR nvarchar(8) 8 False
Name DT_WSTR nvarchar(52) 52 False
DefaultCurrencyCode DT_WSTR nvarchar(12) 12 False
DefaultLanguageCode DT_WSTR nvarchar(20) 20 False
DomainName DT_WSTR nvarchar(68) 68 False
IsParticipating DT_BOOL bit False
HasSuspendedListings DT_BOOL bit False
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:

Read from MarketPlaceParticipations table using API Destination

This Endpoint belongs to MarketPlaceParticipations table, therefore you cannot work with it directly. Use this table and table-operation pair instead:

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

ODBC application

Use these SQL queries in your ODBC application data source:

Get market place participations

SELECT * FROM get_marketplaceparticipations

get_marketplaceparticipations endpoint belongs to MarketPlaceParticipations table(s), and can therefore be used via those table(s).

SQL Server

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

Get market place participations

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

EXEC (@MyQuery) AT [LS_TO_AMAZON_SELLING_PARTNER_SP_API_IN_GATEWAY];

get_marketplaceparticipations endpoint belongs to MarketPlaceParticipations table(s), and can therefore be used via those table(s).