Sha256: 1fbc56fb1a0fbe06d85612b0f9fee15e429c57a35dcf5ffb2a00efe6e42b8179

Contents?: true

Size: 1.27 KB

Versions: 3

Compression:

Stored size: 1.27 KB

Contents

require 'peddler/client'

module MWS
  # The Sellers API lets sellers retrieve information about their seller
  # account, such as the marketplaces they participate in.
  class Sellers < ::Peddler::Client
    path 'Sellers/2011-07-01'

    # Lists the marketplaces the seller participates in
    #
    # @see http://docs.developer.amazonservices.com/en_US/sellers/Sellers_ListMarketplaceParticipations.html
    # @param next_token [String]
    # @return [Peddler::XMLParser]
    def list_marketplace_participations
      operation('ListMarketplaceParticipations')
      run
    end

    # Lists the next page of marketplaces the seller participates in
    #
    # @see http://docs.developer.amazonservices.com/en_US/sellers/Sellers_ListMarketplaceParticipationsByNextToken.html
    # @param next_token [String]
    # @return [Peddler::XMLParser]
    def list_marketplace_participations_by_next_token(next_token)
      operation('ListMarketplaceParticipationsByNextToken')
        .add('NextToken' => next_token)

      run
    end

    # Gets the service status of the API
    #
    # @see http://docs.developer.amazonservices.com/en_US/sellers/MWS_GetServiceStatus.html
    # @return [Peddler::XMLParser]
    def get_service_status
      operation('GetServiceStatus')
      run
    end
  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
peddler-0.7.3 lib/mws/sellers.rb
peddler-0.7.2 lib/mws/sellers.rb
peddler-0.7.1 lib/mws/sellers.rb