Get a list of all products or only store products depending on permissions

GET /Api/Products

Requires verified email; Requires one of the following permissions: Shop.IndexProducts, Shop.IndexStoreProducts; Requires the following features to be enabled: Shop

Query parameters

Responses

GET /Api/Products
curl \
 -X GET https://app.lovassy.hu/Api/Products \
 -H "Authorization: Bearer $ACCESS_TOKEN"
Response examples (200)
[
  {
    "id": 42,
    "name": "string",
    "description": "string",
    "visible": true,
    "qrCodeActivated": true,
    "price": 42,
    "quantity": 42,
    "userLimited": true,
    "userLimit": 42,
    "thumbnailUrl": "string",
    "createdAt": "2024-05-04T09:42:00+00:00",
    "updatedAt": "2024-05-04T09:42:00+00:00"
  }
]