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": "43ee63d3-9045-49dd-ac76-d2d702764d10",
"Comment": "sample string 1",
"UserID": "ee0556df-9a96-41ca-a306-f44bb5918bea",
"ComicID": "b5207675-f854-4bca-ae6a-41414520f967",
"CreatedOn": "2025-12-11T02:34:08.4703657+00:00",
"CreatedBy": "1cccb97b-e5ab-43de-a216-76d3ea113271",
"ModifiedOn": "2025-12-11T02:34:08.4703657+00:00",
"ModifiedBy": "11abef08-fab7-40d2-82eb-86a6aaf58a3c",
"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>b5207675-f854-4bca-ae6a-41414520f967</ComicID> <ComicTitle>sample string 4</ComicTitle> <Comment>sample string 1</Comment> <CommentID>43ee63d3-9045-49dd-ac76-d2d702764d10</CommentID> <CreatedBy>1cccb97b-e5ab-43de-a216-76d3ea113271</CreatedBy> <CreatedOn>2025-12-11T02:34:08.4703657+00:00</CreatedOn> <IsActive>true</IsActive> <IsDeleted>true</IsDeleted> <ModifiedBy>11abef08-fab7-40d2-82eb-86a6aaf58a3c</ModifiedBy> <ModifiedOn>2025-12-11T02:34:08.4703657+00:00</ModifiedOn> <UserID>ee0556df-9a96-41ca-a306-f44bb5918bea</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.