GET
/
vendor
/
attributes
{
  "attributes": [
    {
      "id": "<string>",
      "name": "<string>",
      "description": "<string>",
      "handle": "<string>",
      "is_filterable": true,
      "ui_component": "select",
      "metadata": {},
      "possible_values": [
        {
          "id": "<string>",
          "value": "<string>",
          "rank": 123,
          "metadata": {}
        }
      ],
      "product_categories": [
        {
          "id": "<string>",
          "name": "<string>"
        }
      ],
      "created_at": "2023-11-07T05:31:56Z",
      "updated_at": "2023-11-07T05:31:56Z"
    }
  ],
  "count": 123,
  "offset": 123,
  "limit": 123
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Query Parameters

offset
number

The number of items to skip before starting to collect the result set.

limit
number

The number of items to return.

fields
string

Comma-separated fields to include in the response.

id
string

Filter by attribute ID.

name
string

Filter by attribute name.

handle
string

Filter by attribute handle.

ui_component
enum<string>

Filter by UI component type.

Available options:
select,
multivalue,
unit,
toggle,
text_area,
color_picker

Response

200 - application/json

OK

The response is of type object.