POST Delete
Request Information
URI Parameters
None.
Body Parameters
ComicCommentDto| Name | Description | Type | Additional information |
|---|---|---|---|
| CommentID | globally unique identifier |
None. |
|
| Comment | string |
None. |
|
| UserID | globally unique identifier |
None. |
|
| ComicID | globally unique identifier |
None. |
|
| CreatedOn | date |
None. |
|
| CreatedBy | globally unique identifier |
None. |
|
| ModifiedOn | date |
None. |
|
| ModifiedBy | globally unique identifier |
None. |
|
| IsActive | boolean |
None. |
|
| IsDeleted | boolean |
None. |
|
| ComicTitle | string |
None. |
|
| UserName | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"CommentID": "a0bf232f-c78c-45ca-8218-3c80d0da6d80",
"Comment": "sample string 1",
"UserID": "e214e3bc-6a51-461a-bce3-40a339a57d53",
"ComicID": "42df11be-2352-46bd-9654-2fcb78553672",
"CreatedOn": "2026-04-11T08:08:08.6341379+00:00",
"CreatedBy": "fb732e48-8810-4009-b03e-59304a2ed189",
"ModifiedOn": "2026-04-11T08:08:08.6351415+00:00",
"ModifiedBy": "80d350a5-eba4-4eec-b812-67a4b6d1bc78",
"IsActive": true,
"IsDeleted": true,
"ComicTitle": "sample string 4",
"UserName": "sample string 5"
}
application/xml, text/xml
Sample:
<ComicCommentDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/COMIC.Models"> <ComicID>42df11be-2352-46bd-9654-2fcb78553672</ComicID> <ComicTitle>sample string 4</ComicTitle> <Comment>sample string 1</Comment> <CommentID>a0bf232f-c78c-45ca-8218-3c80d0da6d80</CommentID> <CreatedBy>fb732e48-8810-4009-b03e-59304a2ed189</CreatedBy> <CreatedOn>2026-04-11T08:08:08.6341379+00:00</CreatedOn> <IsActive>true</IsActive> <IsDeleted>true</IsDeleted> <ModifiedBy>80d350a5-eba4-4eec-b812-67a4b6d1bc78</ModifiedBy> <ModifiedOn>2026-04-11T08:08:08.6351415+00:00</ModifiedOn> <UserID>e214e3bc-6a51-461a-bce3-40a339a57d53</UserID> <UserName>sample string 5</UserName> </ComicCommentDto>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
IHttpActionResultNone.
Response Formats
application/json, text/json, application/xml, text/xml
Sample:
Sample not available.