PUT api/userMemes/{id}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
id

integer

Required

Body Parameters

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.

Request Formats

application/json, text/json

Sample:
{
  "userId": "sample string 1",
  "img": "QEA=",
  "tStamp": "2025-12-18T07:27:13.2416838+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:27:13.2416838+02:00</tStamp>
  <title>sample string 3</title>
  <upvotes>5</upvotes>
  <userId>sample string 1</userId>
</meme>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

None.