All

configurable Product Option Repository V1Get List Get

Get all options for configurable product

get

/V1/configurable-products/{sku}/options/all

Path parameters
skustringrequired

(Required)

Example: <string>
Responses
curl -L \
  --url 'http://{{baseurl}}/V1/configurable-products/{sku}/options/all'
[
  {
    "id": "<integer>",
    "attribute_id": "<string>",
    "label": "<string>",
    "position": "<integer>",
    "is_use_default": "<boolean>",
    "values": [
      {
        "value": "<Error: Too many levels of nesting to fake this schema>"
      },
      {
        "value": "<Error: Too many levels of nesting to fake this schema>"
      }
    ],
    "extension_attributes": "<object>",
    "product_id": "<integer>"
  },
  {
    "id": "<integer>",
    "attribute_id": "<string>",
    "label": "<string>",
    "position": "<integer>",
    "is_use_default": "<boolean>",
    "values": [
      {
        "value": "<Error: Too many levels of nesting to fake this schema>"
      },
      {
        "value": "<Error: Too many levels of nesting to fake this schema>"
      }
    ],
    "extension_attributes": "<object>",
    "product_id": "<integer>"
  }
]