All URIs are relative to https://openapi.etsy.com
| Method | HTTP request | Description |
|---|---|---|
| createShopSection | POST /v3/application/shops/{shop_id}/sections | |
| deleteShopSection | DELETE /v3/application/shops/{shop_id}/sections/{shop_section_id} | |
| getShopSection | GET /v3/application/shops/{shop_id}/sections/{shop_section_id} | |
| getShopSections | GET /v3/application/shops/{shop_id}/sections | |
| updateShopSection | PUT /v3/application/shops/{shop_id}/sections/{shop_section_id} |
ShopSection createShopSection(shopId, title)
<div class=\"wt-display-flex-xs wt-align-items-center wt-mt-xs-2 wt-mb-xs-3\"><span class=\"wt-badge wt-badge–notificationPrimary wt-bg-slime-tint wt-mr-xs-2\">General Release</span><a class=\"wt-text-link\" href=\"https://github.com/etsy/open-api/discussions\" target=\"_blank\" rel=\"noopener noreferrer\">Report bug</a></div><div class=\"wt-display-flex-xs wt-align-items-center wt-mt-xs-2 wt-mb-xs-3\"><p class=\"wt-text-body-01 banner-text\">This endpoint is ready for production use.</p></div> Creates a new section in a specific shop.
// Import classes:
//import com.etsy.infrastructure.*
//import com.etsy.models.*
val apiInstance = ShopSectionApi()
val shopId : kotlin.Long = 789 // kotlin.Long | The unique positive non-zero numeric ID for an Etsy Shop.
val title : kotlin.String = title_example // kotlin.String | The title string for a shop section.
try {
val result : ShopSection = apiInstance.createShopSection(shopId, title)
println(result)
} catch (e: ClientException) {
println("4xx response calling ShopSectionApi#createShopSection")
e.printStackTrace()
} catch (e: ServerException) {
println("5xx response calling ShopSectionApi#createShopSection")
e.printStackTrace()
}
| shopId | kotlin.Long| The unique positive non-zero numeric ID for an Etsy Shop. | | | Name | Type | Description | Notes | | ————- | ————- | ————- | ————- | | title | kotlin.String| The title string for a shop section. | |
Configure api_key: ApiClient.apiKey[“x-api-key”] = “” ApiClient.apiKeyPrefix[“x-api-key”] = “” Configure oauth2: ApiClient.accessToken = “”
deleteShopSection(shopId, shopSectionId)
<div class=\"wt-display-flex-xs wt-align-items-center wt-mt-xs-2 wt-mb-xs-3\"><span class=\"wt-badge wt-badge–notificationPrimary wt-bg-slime-tint wt-mr-xs-2\">General Release</span><a class=\"wt-text-link\" href=\"https://github.com/etsy/open-api/discussions\" target=\"_blank\" rel=\"noopener noreferrer\">Report bug</a></div><div class=\"wt-display-flex-xs wt-align-items-center wt-mt-xs-2 wt-mb-xs-3\"><p class=\"wt-text-body-01 banner-text\">This endpoint is ready for production use.</p></div> Deletes a section in a specific shop given a valid shop_section_id.
// Import classes:
//import com.etsy.infrastructure.*
//import com.etsy.models.*
val apiInstance = ShopSectionApi()
val shopId : kotlin.Long = 789 // kotlin.Long | The unique positive non-zero numeric ID for an Etsy Shop.
val shopSectionId : kotlin.Long = 789 // kotlin.Long | The numeric ID of a section in a specific Etsy shop.
try {
apiInstance.deleteShopSection(shopId, shopSectionId)
} catch (e: ClientException) {
println("4xx response calling ShopSectionApi#deleteShopSection")
e.printStackTrace()
} catch (e: ServerException) {
println("5xx response calling ShopSectionApi#deleteShopSection")
e.printStackTrace()
}
| shopId | kotlin.Long| The unique positive non-zero numeric ID for an Etsy Shop. | | | Name | Type | Description | Notes | | ————- | ————- | ————- | ————- | | shopSectionId | kotlin.Long| The numeric ID of a section in a specific Etsy shop. | |
null (empty response body)
Configure api_key: ApiClient.apiKey[“x-api-key”] = “” ApiClient.apiKeyPrefix[“x-api-key”] = “” Configure oauth2: ApiClient.accessToken = “”
ShopSection getShopSection(shopId, shopSectionId)
<div class=\"wt-display-flex-xs wt-align-items-center wt-mt-xs-2 wt-mb-xs-3\"><span class=\"wt-badge wt-badge–notificationPrimary wt-bg-slime-tint wt-mr-xs-2\">General Release</span><a class=\"wt-text-link\" href=\"https://github.com/etsy/open-api/discussions\" target=\"_blank\" rel=\"noopener noreferrer\">Report bug</a></div><div class=\"wt-display-flex-xs wt-align-items-center wt-mt-xs-2 wt-mb-xs-3\"><p class=\"wt-text-body-01 banner-text\">This endpoint is ready for production use.</p></div> Retrieves a shop section, referenced by section ID and shop ID.
// Import classes:
//import com.etsy.infrastructure.*
//import com.etsy.models.*
val apiInstance = ShopSectionApi()
val shopId : kotlin.Long = 789 // kotlin.Long | The unique positive non-zero numeric ID for an Etsy Shop.
val shopSectionId : kotlin.Long = 789 // kotlin.Long | The numeric ID of a section in a specific Etsy shop.
try {
val result : ShopSection = apiInstance.getShopSection(shopId, shopSectionId)
println(result)
} catch (e: ClientException) {
println("4xx response calling ShopSectionApi#getShopSection")
e.printStackTrace()
} catch (e: ServerException) {
println("5xx response calling ShopSectionApi#getShopSection")
e.printStackTrace()
}
| shopId | kotlin.Long| The unique positive non-zero numeric ID for an Etsy Shop. | | | Name | Type | Description | Notes | | ————- | ————- | ————- | ————- | | shopSectionId | kotlin.Long| The numeric ID of a section in a specific Etsy shop. | |
Configure api_key: ApiClient.apiKey[“x-api-key”] = “” ApiClient.apiKeyPrefix[“x-api-key”] = “”
ShopSections getShopSections(shopId)
<div class=\"wt-display-flex-xs wt-align-items-center wt-mt-xs-2 wt-mb-xs-3\"><span class=\"wt-badge wt-badge–notificationPrimary wt-bg-slime-tint wt-mr-xs-2\">General Release</span><a class=\"wt-text-link\" href=\"https://github.com/etsy/open-api/discussions\" target=\"_blank\" rel=\"noopener noreferrer\">Report bug</a></div><div class=\"wt-display-flex-xs wt-align-items-center wt-mt-xs-2 wt-mb-xs-3\"><p class=\"wt-text-body-01 banner-text\">This endpoint is ready for production use.</p></div> Retrieves the list of shop sections in a specific shop identified by shop ID.
// Import classes:
//import com.etsy.infrastructure.*
//import com.etsy.models.*
val apiInstance = ShopSectionApi()
val shopId : kotlin.Long = 789 // kotlin.Long | The unique positive non-zero numeric ID for an Etsy Shop.
try {
val result : ShopSections = apiInstance.getShopSections(shopId)
println(result)
} catch (e: ClientException) {
println("4xx response calling ShopSectionApi#getShopSections")
e.printStackTrace()
} catch (e: ServerException) {
println("5xx response calling ShopSectionApi#getShopSections")
e.printStackTrace()
}
| Name | Type | Description | Notes | | ————- | ————- | ————- | ————- | | shopId | kotlin.Long| The unique positive non-zero numeric ID for an Etsy Shop. | |
Configure api_key: ApiClient.apiKey[“x-api-key”] = “” ApiClient.apiKeyPrefix[“x-api-key”] = “”
ShopSection updateShopSection(shopId, shopSectionId, title)
<div class=\"wt-display-flex-xs wt-align-items-center wt-mt-xs-2 wt-mb-xs-3\"><span class=\"wt-badge wt-badge–notificationPrimary wt-bg-slime-tint wt-mr-xs-2\">General Release</span><a class=\"wt-text-link\" href=\"https://github.com/etsy/open-api/discussions\" target=\"_blank\" rel=\"noopener noreferrer\">Report bug</a></div><div class=\"wt-display-flex-xs wt-align-items-center wt-mt-xs-2 wt-mb-xs-3\"><p class=\"wt-text-body-01 banner-text\">This endpoint is ready for production use.</p></div> Updates a section in a specific shop given a valid shop_section_id.
// Import classes:
//import com.etsy.infrastructure.*
//import com.etsy.models.*
val apiInstance = ShopSectionApi()
val shopId : kotlin.Long = 789 // kotlin.Long | The unique positive non-zero numeric ID for an Etsy Shop.
val shopSectionId : kotlin.Long = 789 // kotlin.Long | The numeric ID of a section in a specific Etsy shop.
val title : kotlin.String = title_example // kotlin.String | The title string for a shop section.
try {
val result : ShopSection = apiInstance.updateShopSection(shopId, shopSectionId, title)
println(result)
} catch (e: ClientException) {
println("4xx response calling ShopSectionApi#updateShopSection")
e.printStackTrace()
} catch (e: ServerException) {
println("5xx response calling ShopSectionApi#updateShopSection")
e.printStackTrace()
}
| shopId | kotlin.Long| The unique positive non-zero numeric ID for an Etsy Shop. | | | shopSectionId | kotlin.Long| The numeric ID of a section in a specific Etsy shop. | | | Name | Type | Description | Notes | | ————- | ————- | ————- | ————- | | title | kotlin.String| The title string for a shop section. | |
Configure api_key: ApiClient.apiKey[“x-api-key”] = “” ApiClient.apiKeyPrefix[“x-api-key”] = “” Configure oauth2: ApiClient.accessToken = “”