List all Styles

Returns a list of your available styles. The styles returned are determined by your organization's access permissions. This endpoint is paginated.

GET /api/styles

Parameters #

ParameterTypeInDescription
pageintegerqueryThe page number to retrieve (default is 1).
limitintegerqueryThe number of items to return per page (default is 50, maximum is 50).

Returns #

A dictionary with a data property that contains an array of up to limit styles, starting after page * limit.

{
  "items": [
    {
      "id": 101,
      "name": "Performance Tee",
      "model": "M1001",
      "manufacturerId": 1,
      "ean": "5701234567890",
      "views": [...]
    },
    ...
  ],
  "page": 1,
  "pageSize": 50,
  "totalCount": 105,
  "totalPages": 3
}