GET
/
attributes
List Attributes
curl --request GET \
  --url https://api.wizcommerce.com/v1/attributes \
  --header 'X-API-Key: <api-key>'
{
  "data": [
    {
      "id": "01f5d171-d3e3-4b2b-bd57-0727194b5bed",
      "name": "Color",
      "entity": "customer",
      "data_type": "select",
      "options": [
        "Red",
        "Blue",
        "Green"
      ],
      "created_at": "2021-01-01T00:00:00Z",
      "updated_at": "2021-01-01T00:00:00Z"
    }
  ]
}

Authorizations

X-API-Key
string
header
required

API Key for authentication

Query Parameters

entity
enum<string>
required
Available options:
customer,
address,
contact,
order,
product
page
integer
Required range: x >= 1
page_size
integer
Required range: 1 <= x <= 100

Response

200
application/json

OK

The response is of type object.