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| Parameter | Type | In | Description |
|---|---|---|---|
| page | integer | query | The page number to retrieve (default is 1). |
| limit | integer | query | The number of items to return per page (default is 50, maximum is 50). |
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
}