GET api/userMemes/{id}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
id

string

Required

Body Parameters

None.

Response Information

Resource Description

meme
NameDescriptionTypeAdditional information
userId

string

None.

img

Collection of byte

None.

tStamp

date

None.

id

integer

None.

title

string

None.

descr

string

None.

upvotes

integer

None.

statusId

byte

None.

Response Formats

application/json, text/json

Sample:
{
  "userId": "sample string 1",
  "img": "QEA=",
  "tStamp": "2025-12-18T07:19:11.5911068+02:00",
  "id": 2,
  "title": "sample string 3",
  "descr": "sample string 4",
  "upvotes": 5,
  "statusId": 64
}

application/xml, text/xml

Sample:
<meme xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/waytoodankapi.Models">
  <descr>sample string 4</descr>
  <id>2</id>
  <img>QEA=</img>
  <statusId>64</statusId>
  <tStamp>2025-12-18T07:19:11.5911068+02:00</tStamp>
  <title>sample string 3</title>
  <upvotes>5</upvotes>
  <userId>sample string 1</userId>
</meme>