POST Create
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": "554ad987-11c8-4951-8e9f-2eee73e74495",
"Comment": "sample string 1",
"UserID": "7219dd11-a2cc-4696-8260-bc841c241236",
"ComicID": "b2d8f803-8d0e-4b71-bf4b-c3687a924478",
"CreatedOn": "2026-04-11T08:16:39.0540171+00:00",
"CreatedBy": "053c9d71-9dc0-4160-bdd8-a26b7a88c4b7",
"ModifiedOn": "2026-04-11T08:16:39.0540171+00:00",
"ModifiedBy": "132848cc-936f-4024-8abe-427839141c2d",
"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>b2d8f803-8d0e-4b71-bf4b-c3687a924478</ComicID> <ComicTitle>sample string 4</ComicTitle> <Comment>sample string 1</Comment> <CommentID>554ad987-11c8-4951-8e9f-2eee73e74495</CommentID> <CreatedBy>053c9d71-9dc0-4160-bdd8-a26b7a88c4b7</CreatedBy> <CreatedOn>2026-04-11T08:16:39.0540171+00:00</CreatedOn> <IsActive>true</IsActive> <IsDeleted>true</IsDeleted> <ModifiedBy>132848cc-936f-4024-8abe-427839141c2d</ModifiedBy> <ModifiedOn>2026-04-11T08:16:39.0540171+00:00</ModifiedOn> <UserID>7219dd11-a2cc-4696-8260-bc841c241236</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.