POST Update
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": "bc00a4cf-ed77-4816-b6c3-4279a143dba1",
"Comment": "sample string 1",
"UserID": "6b71facf-3057-423b-9832-627c2333ae59",
"ComicID": "e2ba59bc-390b-4bce-a1b9-af905438a55d",
"CreatedOn": "2025-12-11T02:34:06.5583646+00:00",
"CreatedBy": "c5a1ff0d-304d-4ef2-9fd6-4a04ff57af2f",
"ModifiedOn": "2025-12-11T02:34:06.5583646+00:00",
"ModifiedBy": "550bf1d9-71b9-4340-b54a-2c1f7fca4273",
"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>e2ba59bc-390b-4bce-a1b9-af905438a55d</ComicID> <ComicTitle>sample string 4</ComicTitle> <Comment>sample string 1</Comment> <CommentID>bc00a4cf-ed77-4816-b6c3-4279a143dba1</CommentID> <CreatedBy>c5a1ff0d-304d-4ef2-9fd6-4a04ff57af2f</CreatedBy> <CreatedOn>2025-12-11T02:34:06.5583646+00:00</CreatedOn> <IsActive>true</IsActive> <IsDeleted>true</IsDeleted> <ModifiedBy>550bf1d9-71b9-4340-b54a-2c1f7fca4273</ModifiedBy> <ModifiedOn>2025-12-11T02:34:06.5583646+00:00</ModifiedOn> <UserID>6b71facf-3057-423b-9832-627c2333ae59</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.