Class: AmzSpApi::ListingsRestrictionsApiModel::ListingsApi
- Inherits:
-
Object
- Object
- AmzSpApi::ListingsRestrictionsApiModel::ListingsApi
- Defined in:
- lib/listings-restrictions-api-model/api/listings_api.rb
Instance Attribute Summary collapse
-
#api_client ⇒ Object
Returns the value of attribute api_client.
Instance Method Summary collapse
-
#get_listings_restrictions(asin, seller_id, marketplace_ids, opts = {}) ⇒ RestrictionList
Returns listing restrictions for an item in the Amazon Catalog.
-
#get_listings_restrictions_with_http_info(asin, seller_id, marketplace_ids, opts = {}) ⇒ Array<(RestrictionList, Integer, Hash)>
Returns listing restrictions for an item in the Amazon Catalog.
-
#initialize(api_client = ApiClient.default) ⇒ ListingsApi
constructor
A new instance of ListingsApi.
Constructor Details
#initialize(api_client = ApiClient.default) ⇒ ListingsApi
Returns a new instance of ListingsApi.
16 17 18 |
# File 'lib/listings-restrictions-api-model/api/listings_api.rb', line 16 def initialize(api_client = ApiClient.default) @api_client = api_client end |
Instance Attribute Details
#api_client ⇒ Object
Returns the value of attribute api_client.
14 15 16 |
# File 'lib/listings-restrictions-api-model/api/listings_api.rb', line 14 def api_client @api_client end |
Instance Method Details
#get_listings_restrictions(asin, seller_id, marketplace_ids, opts = {}) ⇒ RestrictionList
Returns listing restrictions for an item in the Amazon Catalog. **Usage Plan:** | Rate (requests per second) | Burst | | —- | —- | | 5 | 10 | The ‘x-amzn-RateLimit-Limit` response header returns the usage plan rate limits that were applied to the requested operation, when available. The table above indicates the default rate and burst values for this operation. Selling partners whose business demands require higher throughput may see higher rate and burst values then those shown here. For more information, see [Usage Plans and Rate Limits in the Selling Partner API](doc:usage-plans-and-rate-limits-in-the-sp-api).
27 28 29 30 |
# File 'lib/listings-restrictions-api-model/api/listings_api.rb', line 27 def get_listings_restrictions(asin, seller_id, marketplace_ids, opts = {}) data, _status_code, _headers = get_listings_restrictions_with_http_info(asin, seller_id, marketplace_ids, opts) data end |
#get_listings_restrictions_with_http_info(asin, seller_id, marketplace_ids, opts = {}) ⇒ Array<(RestrictionList, Integer, Hash)>
Returns listing restrictions for an item in the Amazon Catalog. **Usage Plan:** | Rate (requests per second) | Burst | | —- | —- | | 5 | 10 | The `x-amzn-RateLimit-Limit` response header returns the usage plan rate limits that were applied to the requested operation, when available. The table above indicates the default rate and burst values for this operation. Selling partners whose business demands require higher throughput may see higher rate and burst values then those shown here. For more information, see [Usage Plans and Rate Limits in the Selling Partner API](doc:usage-plans-and-rate-limits-in-the-sp-api).
40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 |
# File 'lib/listings-restrictions-api-model/api/listings_api.rb', line 40 def get_listings_restrictions_with_http_info(asin, seller_id, marketplace_ids, opts = {}) if @api_client.config.debugging @api_client.config.logger.debug 'Calling API: ListingsApi.get_listings_restrictions ...' end # verify the required parameter 'asin' is set if @api_client.config.client_side_validation && asin.nil? fail ArgumentError, "Missing the required parameter 'asin' when calling ListingsApi.get_listings_restrictions" end # verify the required parameter 'seller_id' is set if @api_client.config.client_side_validation && seller_id.nil? fail ArgumentError, "Missing the required parameter 'seller_id' when calling ListingsApi.get_listings_restrictions" end # verify the required parameter 'marketplace_ids' is set if @api_client.config.client_side_validation && marketplace_ids.nil? fail ArgumentError, "Missing the required parameter 'marketplace_ids' when calling ListingsApi.get_listings_restrictions" end if @api_client.config.client_side_validation && opts[:'condition_type'] && !['new_new', 'new_open_box', 'new_oem', 'refurbished_refurbished', 'used_like_new', 'used_very_good', 'used_good', 'used_acceptable', 'collectible_like_new', 'collectible_very_good', 'collectible_good', 'collectible_acceptable', 'club_club'].include?(opts[:'condition_type']) fail ArgumentError, 'invalid value for "condition_type", must be one of new_new, new_open_box, new_oem, refurbished_refurbished, used_like_new, used_very_good, used_good, used_acceptable, collectible_like_new, collectible_very_good, collectible_good, collectible_acceptable, club_club' end # resource path local_var_path = '/listings/2021-08-01/restrictions' # query parameters query_params = opts[:query_params] || {} query_params[:'asin'] = asin query_params[:'sellerId'] = seller_id query_params[:'marketplaceIds'] = @api_client.build_collection_param(marketplace_ids, :csv) query_params[:'conditionType'] = opts[:'condition_type'] if !opts[:'condition_type'].nil? query_params[:'reasonLocale'] = opts[:'reason_locale'] if !opts[:'reason_locale'].nil? # header parameters header_params = opts[:header_params] || {} # HTTP header 'Accept' (if needed) header_params['Accept'] = @api_client.select_header_accept(['application/json']) # form parameters form_params = opts[:form_params] || {} # http body (model) post_body = opts[:body] return_type = opts[:return_type] || 'RestrictionList' auth_names = opts[:auth_names] || [] data, status_code, headers = @api_client.call_api(:GET, local_var_path, :header_params => header_params, :query_params => query_params, :form_params => form_params, :body => post_body, :auth_names => auth_names, :return_type => return_type) if @api_client.config.debugging @api_client.config.logger.debug "API called: ListingsApi#get_listings_restrictions\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}" end return data, status_code, headers end |