Class: Peddler::API::SellersV1

Inherits:
Peddler::API show all
Defined in:
lib/peddler/api/sellers_v1.rb

Overview

Selling Partner API for Sellers

The Selling Partner API for Sellers (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 for details about this API's operations, data types, and schemas.

Instance Attribute Summary

Attributes inherited from Peddler::API

#access_token, #endpoint

Instance Method Summary collapse

Methods inherited from Peddler::API

#cannot_sandbox!, #endpoint_uri, #http, #initialize, #meter, #must_sandbox!, #retriable, #sandbox, #sandbox?, #use, #via

Constructor Details

This class inherits a constructor from Peddler::API

Instance Method Details

#get_account(rate_limit: 0.016) ⇒ Hash

Note:

This operation can make a static sandbox call.

Returns information about a seller account and its marketplaces.

Parameters:

  • rate_limit (Float) (defaults to: 0.016)

    Requests per second

Returns:

  • (Hash)

    The API response



39
40
41
42
43
# File 'lib/peddler/api/sellers_v1.rb', line 39

def (rate_limit: 0.016)
  path = "/sellers/v1/account"

  meter(rate_limit).get(path)
end

#get_marketplace_participations(rate_limit: 0.016) ⇒ Hash

Note:

This operation can make a static sandbox call.

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

Parameters:

  • rate_limit (Float) (defaults to: 0.016)

    Requests per second

Returns:

  • (Hash)

    The API response



28
29
30
31
32
# File 'lib/peddler/api/sellers_v1.rb', line 28

def get_marketplace_participations(rate_limit: 0.016)
  path = "/sellers/v1/marketplaceParticipations"

  meter(rate_limit).get(path)
end