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": "35523549-ab2d-48f3-9c23-c559a0052e0c",
"Comment": "sample string 1",
"UserID": "fd15e689-84db-45d3-b06a-e623e03eb7ab",
"ComicID": "3e68dd48-7625-40d5-bbc4-e50a4e31ce7e",
"CreatedOn": "2026-02-02T16:07:53.5135613+00:00",
"CreatedBy": "0820c212-1dd4-4a87-8ec2-2502cec60595",
"ModifiedOn": "2026-02-02T16:07:53.5135613+00:00",
"ModifiedBy": "0d66db2c-7d78-452e-ae7a-e37860ec36a2",
"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>3e68dd48-7625-40d5-bbc4-e50a4e31ce7e</ComicID> <ComicTitle>sample string 4</ComicTitle> <Comment>sample string 1</Comment> <CommentID>35523549-ab2d-48f3-9c23-c559a0052e0c</CommentID> <CreatedBy>0820c212-1dd4-4a87-8ec2-2502cec60595</CreatedBy> <CreatedOn>2026-02-02T16:07:53.5135613+00:00</CreatedOn> <IsActive>true</IsActive> <IsDeleted>true</IsDeleted> <ModifiedBy>0d66db2c-7d78-452e-ae7a-e37860ec36a2</ModifiedBy> <ModifiedOn>2026-02-02T16:07:53.5135613+00:00</ModifiedOn> <UserID>fd15e689-84db-45d3-b06a-e623e03eb7ab</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.