GET api/v_commentReplies/{id}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
id

integer

Required

Body Parameters

None.

Response Information

Resource Description

v_commentReplies
NameDescriptionTypeAdditional information
commentId

integer

None.

userId

string

None.

tStamp

date

None.

reply

string

None.

id

integer

None.

statusId

integer

None.

username

string

None.

photo

Collection of byte

None.

Response Formats

application/json, text/json

Sample:
{
  "commentId": 1,
  "userId": "sample string 1",
  "tStamp": "2025-12-18T07:21:04.8068506+02:00",
  "reply": "sample string 2",
  "id": 3,
  "statusId": 1,
  "username": "sample string 4",
  "photo": "QEA="
}

application/xml, text/xml

Sample:
<v_commentReplies xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/waytoodankapi.Models">
  <commentId>1</commentId>
  <id>3</id>
  <photo>QEA=</photo>
  <reply>sample string 2</reply>
  <statusId>1</statusId>
  <tStamp>2025-12-18T07:21:04.8068506+02:00</tStamp>
  <userId>sample string 1</userId>
  <username>sample string 4</username>
</v_commentReplies>