class Peddler::APIs::CatalogItemsV0
Selling Partner API
for Catalog Items
The Selling Partner API
for Catalog Items helps you programmatically retrieve item details for items in the catalog.
Public Instance Methods
Source
# File lib/peddler/apis/catalog_items_v0.rb, line 27 def list_catalog_categories(marketplace_id, asin: nil, seller_sku: nil, rate_limit: 1.0) path = "/catalog/v0/categories" params = { "MarketplaceId" => marketplace_id, "ASIN" => asin, "SellerSKU" => seller_sku, }.compact meter(rate_limit).get(path, params:) end
Returns the parent categories to which an item belongs, based on the specified ASIN or SellerSKU.
@note This operation can make a static sandbox call. @param marketplace_id [String] A marketplace identifier. Specifies the marketplace for the item. @param asin [String] The Amazon Standard Identification Number (ASIN) of the item. @param seller_sku [String] Used to identify items in the given marketplace. SellerSKU is qualified by the
seller's SellerId, which is included with every operation that you submit.
@param rate_limit [Float] Requests per second @return [Peddler::Response] The API
response