GET api/v_comments
Request Information
URI Parameters
None.
Body Parameters
None.
Response Information
Resource Description
Collection of v_comments| Name | Description | Type | Additional information |
|---|---|---|---|
| memeId | integer |
None. |
|
| userId | string |
None. |
|
| tStamp | date |
None. |
|
| id | integer |
None. |
|
| statusId | integer |
None. |
|
| text | string |
None. |
|
| username | string |
None. |
|
| userPhoto | Collection of byte |
None. |
|
| replies | integer |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"memeId": 1,
"userId": "sample string 1",
"tStamp": "2025-12-18T07:27:10.0649133+02:00",
"id": 2,
"statusId": 1,
"text": "sample string 3",
"username": "sample string 4",
"userPhoto": "QEA=",
"replies": 1
},
{
"memeId": 1,
"userId": "sample string 1",
"tStamp": "2025-12-18T07:27:10.0649133+02:00",
"id": 2,
"statusId": 1,
"text": "sample string 3",
"username": "sample string 4",
"userPhoto": "QEA=",
"replies": 1
}
]
application/xml, text/xml
Sample:
<ArrayOfv_comments xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/waytoodankapi.Models">
<v_comments>
<id>2</id>
<memeId>1</memeId>
<replies>1</replies>
<statusId>1</statusId>
<tStamp>2025-12-18T07:27:10.0649133+02:00</tStamp>
<text>sample string 3</text>
<userId>sample string 1</userId>
<userPhoto>QEA=</userPhoto>
<username>sample string 4</username>
</v_comments>
<v_comments>
<id>2</id>
<memeId>1</memeId>
<replies>1</replies>
<statusId>1</statusId>
<tStamp>2025-12-18T07:27:10.0649133+02:00</tStamp>
<text>sample string 3</text>
<userId>sample string 1</userId>
<userPhoto>QEA=</userPhoto>
<username>sample string 4</username>
</v_comments>
</ArrayOfv_comments>