Class Amazon::AWS::SellerListingSearch
In: lib/amazon/aws.rb
Parent: Operation

Search for items for sale by a particular seller.

Methods

new  

Public Class methods

Search for items for sale by a particular seller. seller_id is the Amazon seller ID and parameters is an optional hash of parameters that further refine the scope of the search.

Example:

 sls = SellerListingSearch.new( 'A33J388YD2MWJZ',
                                { 'Keywords' => 'Killing Joke' } )

In the above example, we search seller A33J388YD2MWJ‘s listings for items with the keywords Killing Joke.

[Source]

# File lib/amazon/aws.rb, line 1008
      def initialize(seller_id, parameters)
        super( { 'SellerId' => seller_id }.merge( parameters ) )
      end

[Validate]