GET api/upvotes

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

Collection of upvote
NameDescriptionTypeAdditional information
userId

string

None.

memeId

integer

None.

id

integer

None.

tstamp

date

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "userId": "sample string 1",
    "memeId": 1,
    "id": 2,
    "tstamp": "2025-12-18T07:18:38.9456192+02:00"
  },
  {
    "userId": "sample string 1",
    "memeId": 1,
    "id": 2,
    "tstamp": "2025-12-18T07:18:38.9456192+02:00"
  }
]

application/xml, text/xml

Sample:
<ArrayOfupvote xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/waytoodankapi.Models">
  <upvote>
    <id>2</id>
    <memeId>1</memeId>
    <tstamp>2025-12-18T07:18:38.9456192+02:00</tstamp>
    <userId>sample string 1</userId>
  </upvote>
  <upvote>
    <id>2</id>
    <memeId>1</memeId>
    <tstamp>2025-12-18T07:18:38.9456192+02:00</tstamp>
    <userId>sample string 1</userId>
  </upvote>
</ArrayOfupvote>