GET api/memedetails/{id}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
id

integer

Required

Body Parameters

None.

Response Information

Resource Description

memedetail
NameDescriptionTypeAdditional information
memeId

integer

None.

competitionId

integer

None.

field1

string

None.

field2

string

None.

tStamp

date

None.

id

integer

None.

Response Formats

application/json, text/json

Sample:
{
  "memeId": 1,
  "competitionId": 1,
  "field1": "sample string 1",
  "field2": "sample string 2",
  "tStamp": "2025-12-18T07:19:52.4277275+02:00",
  "id": 3
}

application/xml, text/xml

Sample:
<memedetail xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/waytoodankapi.Models">
  <competitionId>1</competitionId>
  <field1>sample string 1</field1>
  <field2>sample string 2</field2>
  <id>3</id>
  <memeId>1</memeId>
  <tStamp>2025-12-18T07:19:52.4277275+02:00</tStamp>
</memedetail>