Get information about an image voting entry

GET /Api/ImageVotingEntries/{id}

Requires verified email; Requires one of the following permissions: ImageVotings.ViewImageVotingEntry, ImageVotings.ViewActiveImageVotingEntry; Requires the following features to be enabled: ImageVotings

Path parameters

  • id integer(int32) Required

Responses

GET /Api/ImageVotingEntries/{id}
curl \
 -X GET https://app.lovassy.hu/Api/ImageVotingEntries/{id} \
 -H "Authorization: Bearer $ACCESS_TOKEN"
Response examples (404)
{
  "type": "string",
  "title": "string",
  "status": 42,
  "detail": "string",
  "instance": "string"
}
Response examples (200)
{
  "id": 42,
  "title": "string",
  "imageUrl": "string",
  "userId": "string",
  "user": {
    "name": "string",
    "realName": "string",
    "class": "string"
  },
  "imageVotingId": 42,
  "canChoose": true,
  "chosen": true,
  "incrementType": "string",
  "createdAt": "2024-05-04T09:42:00+00:00",
  "updatedAt": "2024-05-04T09:42:00+00:00"
}