Class: AmazonAds::BrandStoreEditions

Inherits:
API
  • Object
show all
Defined in:
lib/amazon_ads/apis/brand_store_editions.rb

Constant Summary

Constants inherited from API

API::ENDPOINTS

Instance Attribute Summary

Attributes inherited from API

#access_token, #account_id, #profile_id, #region, #retries

Instance Method Summary collapse

Methods inherited from API

#endpoint, #http, #initialize

Constructor Details

This class inherits a constructor from AmazonAds::API

Instance Method Details

#list_brand_store_edition(brand_store_id:, next_token: nil, max_results: nil) ⇒ Object

Retrieve brand store page content

Signature:

  • (brand_store_id: String, ?next_token: String?, ?max_results: Integer?) -> HTTP::Response



7
8
9
# File 'lib/amazon_ads/apis/brand_store_editions.rb', line 7

def list_brand_store_edition(brand_store_id:, next_token: nil, max_results: nil)
  request(:get, "/adsApi/v1/brandStoreEditions", params: { "brandStoreId" => brand_store_id, "nextToken" => next_token, "maxResults" => max_results }.compact)
end