Get a list of the current user's owned items

GET /Api/OwnedItems/Own

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

Query parameters

Responses

GET /Api/OwnedItems/Own
curl \
 -X GET https://app.lovassy.hu/Api/OwnedItems/Own \
 -H "Authorization: Bearer $ACCESS_TOKEN"
Response examples (200)
[
  {
    "id": 42,
    "product": {
      "id": 42,
      "name": "string",
      "description": "string",
      "qrCodeActivated": true,
      "inputs": [
        {
          "type": "string",
          "key": "string",
          "label": "string"
        }
      ],
      "thumbnailUrl": "string",
      "createdAt": "2024-05-04T09:42:00+00:00",
      "updatedAt": "2024-05-04T09:42:00+00:00"
    },
    "usedAt": "2024-05-04T09:42:00+00:00",
    "createdAt": "2024-05-04T09:42:00+00:00",
    "updatedAt": "2024-05-04T09:42:00+00:00"
  }
]