Search Catalog Items
Name
search_catalog_items
Description
Search for and return a list of Amazon catalog items and associated information either by identifier or by keywords. [API reference]
Parameters
Output 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. |
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:
Search Catalog Items using API Source
Amazon Selling Partner (SP-API)
Search Catalog Items

Search Catalog Items using API Destination
Amazon Selling Partner (SP-API)
Search Catalog Items

ODBC application
Use these SQL queries in your ODBC application data source:
Search catalog items
SELECT * FROM search_catalog_items
WITH
(
"MarketplaceIds" = 'abcd-1234-marketplaceids'
)
SQL Server
Use these SQL queries in SQL Server after you create a data source in Data Gateway:
Search catalog items
DECLARE @MyQuery NVARCHAR(MAX) = 'SELECT * FROM search_catalog_items
WITH
(
"MarketplaceIds" = ''abcd-1234-marketplaceids''
)';
EXEC (@MyQuery) AT [LS_TO_AMAZON_SELLING_PARTNER_SP_API_IN_GATEWAY];