Get information about an owned item

GET /Api/OwnedItems/{id}

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

Path parameters

  • id integer(int32) Required

Responses

GET /Api/OwnedItems/{id}
curl \
 -X GET https://app.lovassy.hu/Api/OwnedItems/{id} \
 -H "Authorization: Bearer $ACCESS_TOKEN"
Response examples (404)
{
  "type": "string",
  "title": "string",
  "status": 42,
  "detail": "string",
  "instance": "string"
}
Response examples (200)
{
  "id": 42,
  "userId": "string",
  "product": {
    "id": 42,
    "name": "string",
    "description": "string",
    "richTextContent": "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"
}