GET api/v_commentReplies

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

Collection of 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:27:13.2416838+02:00",
    "reply": "sample string 2",
    "id": 3,
    "statusId": 1,
    "username": "sample string 4",
    "photo": "QEA="
  },
  {
    "commentId": 1,
    "userId": "sample string 1",
    "tStamp": "2025-12-18T07:27:13.2416838+02:00",
    "reply": "sample string 2",
    "id": 3,
    "statusId": 1,
    "username": "sample string 4",
    "photo": "QEA="
  }
]

application/xml, text/xml

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