DELETE api/v_comments/{id}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
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:28:38.2258645+02:00",
"id": 2,
"statusId": 1,
"text": "sample string 3",
"username": "sample string 4",
"userPhoto": "QEA=",
"replies": 1
}
application/xml, text/xml
Sample:
<v_comments xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/waytoodankapi.Models"> <id>2</id> <memeId>1</memeId> <replies>1</replies> <statusId>1</statusId> <tStamp>2025-12-18T07:28:38.2258645+02:00</tStamp> <text>sample string 3</text> <userId>sample string 1</userId> <userPhoto>QEA=</userPhoto> <username>sample string 4</username> </v_comments>