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

Return information about a specific seller.

Methods

new  

Public Class methods

Search for the details of a specific seller. seller_id is the Amazon ID of the seller in question and parameters is an optional hash of parameters that further refine the scope of the search.

Example:

 sl = SellerLookup.new( 'A3QFR0K2KCB7EG' )

In the above example, we look up the details of the seller with ID A3QFR0K2KCB7EG.

[Source]

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

[Validate]