POST Delete

Request Information

URI Parameters

None.

Body Parameters

ComicCommentDto
NameDescriptionTypeAdditional 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": "caf238e7-8f41-4d65-90c3-ac7d887e900e",
  "Comment": "sample string 1",
  "UserID": "3759fb6e-f17c-4a05-87ff-e5dc6b5979a5",
  "ComicID": "cce0e939-4326-4227-8b24-82050524de7b",
  "CreatedOn": "2025-12-11T02:34:31.9413625+00:00",
  "CreatedBy": "f4e976bc-7d73-4d48-8f56-a9707399dc61",
  "ModifiedOn": "2025-12-11T02:34:31.9413625+00:00",
  "ModifiedBy": "8055c9b4-0d4b-4abc-aa72-55dbd0241c66",
  "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>cce0e939-4326-4227-8b24-82050524de7b</ComicID>
  <ComicTitle>sample string 4</ComicTitle>
  <Comment>sample string 1</Comment>
  <CommentID>caf238e7-8f41-4d65-90c3-ac7d887e900e</CommentID>
  <CreatedBy>f4e976bc-7d73-4d48-8f56-a9707399dc61</CreatedBy>
  <CreatedOn>2025-12-11T02:34:31.9413625+00:00</CreatedOn>
  <IsActive>true</IsActive>
  <IsDeleted>true</IsDeleted>
  <ModifiedBy>8055c9b4-0d4b-4abc-aa72-55dbd0241c66</ModifiedBy>
  <ModifiedOn>2025-12-11T02:34:31.9413625+00:00</ModifiedOn>
  <UserID>3759fb6e-f17c-4a05-87ff-e5dc6b5979a5</UserID>
  <UserName>sample string 5</UserName>
</ComicCommentDto>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

IHttpActionResult

None.

Response Formats

application/json, text/json, application/xml, text/xml

Sample:

Sample not available.