GET api/commentreplies
Request Information
URI Parameters
None.
Body Parameters
None.
Response Information
Resource Description
Collection of commentreply| Name | Description | Type | Additional information |
|---|---|---|---|
| id | integer |
None. |
|
| commentId | integer |
None. |
|
| userId | string |
None. |
|
| tStamp | date |
None. |
|
| reply | string |
None. |
|
| statusId | integer |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"id": 1,
"commentId": 1,
"userId": "sample string 2",
"tStamp": "2025-12-18T07:26:53.8518429+02:00",
"reply": "sample string 3",
"statusId": 1
},
{
"id": 1,
"commentId": 1,
"userId": "sample string 2",
"tStamp": "2025-12-18T07:26:53.8518429+02:00",
"reply": "sample string 3",
"statusId": 1
}
]
application/xml, text/xml
Sample:
<ArrayOfcommentreply xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/waytoodankapi.Models">
<commentreply>
<commentId>1</commentId>
<id>1</id>
<reply>sample string 3</reply>
<statusId>1</statusId>
<tStamp>2025-12-18T07:26:53.8518429+02:00</tStamp>
<userId>sample string 2</userId>
</commentreply>
<commentreply>
<commentId>1</commentId>
<id>1</id>
<reply>sample string 3</reply>
<statusId>1</statusId>
<tStamp>2025-12-18T07:26:53.8518429+02:00</tStamp>
<userId>sample string 2</userId>
</commentreply>
</ArrayOfcommentreply>