class Peddler::API::SellersV1

Selling Partner API for Sellers

The [Selling Partner API for Sellers](developer-docs.amazon.com/sp-api/docs/sellers-api-v1-reference) (Sellers API) provides essential information about seller accounts, such as: - The marketplaces a seller can list in - The default language and currency of a marketplace - Whether the seller has suspended listings Refer to the [Sellers API reference](developer-docs.amazon.com/sp-api/docs/sellers-api-v1-reference) for details about this API’s operations, data types, and schemas.

Public Instance Methods

get_account(rate_limit: 0.016) click to toggle source

Returns information about a seller account and its marketplaces.

@note This operation can make a static sandbox call. @param rate_limit [Float] Requests per second @return [Hash] The API response

# File lib/peddler/api/sellers_v1.rb, line 38
def get_account(rate_limit: 0.016)
  path = "/sellers/v1/account"

  meter(rate_limit).get(path)
end
get_marketplace_participations(rate_limit: 0.016) click to toggle source

Returns a list of marketplaces where the seller can list items and information about the seller’s participation in those marketplaces.

@note This operation can make a static sandbox call. @param rate_limit [Float] Requests per second @return [Hash] The API response

# File lib/peddler/api/sellers_v1.rb, line 27
def get_marketplace_participations(rate_limit: 0.016)
  path = "/sellers/v1/marketplaceParticipations"

  meter(rate_limit).get(path)
end