All URIs are relative to https://openapi.etsy.com
Method | HTTP request | Description |
---|---|---|
get_listing_inventory | GET /v3/application/listings/{listing_id}/inventory | |
update_listing_inventory | PUT /v3/application/listings/{listing_id}/inventory |
get_listing_inventory(listing_id, opts)
General ReleaseReport bug
This endpoint is ready for production use.
require 'time'
require 'etsy_api'
# setup authorization
EtsyApi.configure do |config|
# Configure API key authorization: api_key
config.api_key['api_key'] = 'YOUR API KEY'
# Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
# config.api_key_prefix['api_key'] = 'Bearer'
# Configure OAuth2 access token for authorization: oauth2
config.access_token = 'YOUR ACCESS TOKEN'
end
api_instance = EtsyApi::ShopListingInventoryApi.new
listing_id = 56 # Integer | The numeric ID for the [listing](/documentation/reference#tag/ShopListing) associated to this transaction.
opts = {
show_deleted: true, # Boolean | A boolean value for inventory whether to include deleted products and their offerings. Default value is false.
includes: 'Listing' # String | An enumerated string that attaches a valid association. Default value is null.
}
begin
result = api_instance.get_listing_inventory(listing_id, opts)
p result
rescue EtsyApi::ApiError => e
puts "Error when calling ShopListingInventoryApi->get_listing_inventory: #{e}"
end
This returns an Array which contains the response data, status code and headers.
<Array(, Integer, Hash)> get_listing_inventory_with_http_info(listing_id, opts)
begin
data, status_code, headers = api_instance.get_listing_inventory_with_http_info(listing_id, opts)
p status_code # => 2xx
p headers # => { ... }
p data # => <ListingInventoryWithAssociations>
rescue EtsyApi::ApiError => e
puts "Error when calling ShopListingInventoryApi->get_listing_inventory_with_http_info: #{e}"
end
Name | Type | Description | Notes |
---|---|---|---|
listing_id | Integer | The numeric ID for the listing associated to this transaction. | |
show_deleted | Boolean | A boolean value for inventory whether to include deleted products and their offerings. Default value is false. | [optional] |
includes | String | An enumerated string that attaches a valid association. Default value is null. | [optional] |
ListingInventoryWithAssociations
- Content-Type: Not defined
- Accept: application/json
update_listing_inventory(listing_id, opts)
General ReleaseReport bug
This endpoint is ready for production use.
require 'time'
require 'etsy_api'
# setup authorization
EtsyApi.configure do |config|
# Configure API key authorization: api_key
config.api_key['api_key'] = 'YOUR API KEY'
# Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
# config.api_key_prefix['api_key'] = 'Bearer'
# Configure OAuth2 access token for authorization: oauth2
config.access_token = 'YOUR ACCESS TOKEN'
end
api_instance = EtsyApi::ShopListingInventoryApi.new
listing_id = 56 # Integer | The numeric ID for the [listing](/documentation/reference#tag/ShopListing) associated to this transaction.
opts = {
update_listing_inventory_request: EtsyApi::UpdateListingInventoryRequest.new({products: [EtsyApi::UpdateListingInventoryRequestProductsInner.new({offerings: [EtsyApi::UpdateListingInventoryRequestProductsInnerOfferingsInner.new({price: 3.56, quantity: 37, is_enabled: false})]})]}) # UpdateListingInventoryRequest |
}
begin
result = api_instance.update_listing_inventory(listing_id, opts)
p result
rescue EtsyApi::ApiError => e
puts "Error when calling ShopListingInventoryApi->update_listing_inventory: #{e}"
end
This returns an Array which contains the response data, status code and headers.
<Array(, Integer, Hash)> update_listing_inventory_with_http_info(listing_id, opts)
begin
data, status_code, headers = api_instance.update_listing_inventory_with_http_info(listing_id, opts)
p status_code # => 2xx
p headers # => { ... }
p data # => <ListingInventory>
rescue EtsyApi::ApiError => e
puts "Error when calling ShopListingInventoryApi->update_listing_inventory_with_http_info: #{e}"
end
Name | Type | Description | Notes |
---|---|---|---|
listing_id | Integer | The numeric ID for the listing associated to this transaction. | |
update_listing_inventory_request | UpdateListingInventoryRequest | [optional] |
- Content-Type: application/json
- Accept: application/json