POST ComicReadingProgress/Delete

Request Information

URI Parameters

None.

Body Parameters

ComicReadingProgressDto
NameDescriptionTypeAdditional information
Id

globally unique identifier

None.

ComicId

globally unique identifier

None.

UserId

globally unique identifier

None.

LastReadEpisodeId

globally unique identifier

None.

StartedOn

date

None.

LastAccessedOn

date

None.

TotalTimeSpent

time interval

None.

IsCompleted

boolean

None.

ReadingProgressPercent

decimal number

None.

ComicTitle

string

None.

LastEpisodeTitle

string

None.

UserName

string

None.

Action

string

None.

Request Formats

application/json, text/json

Sample:
{
  "Id": "6b181385-a5c0-4973-8865-9f3925ceeec7",
  "ComicId": "2a74c0f9-19a6-4b80-978e-15b8daa9a516",
  "UserId": "efb915b8-54b0-475a-b25e-0a06b02d97a4",
  "LastReadEpisodeId": "3905ca15-0596-484d-8261-c69c500ad2a7",
  "StartedOn": "2025-12-11T02:35:30.2203227+00:00",
  "LastAccessedOn": "2025-12-11T02:35:30.2203227+00:00",
  "TotalTimeSpent": "00:00:00.1234567",
  "IsCompleted": true,
  "ReadingProgressPercent": 1.1,
  "ComicTitle": "sample string 4",
  "LastEpisodeTitle": "sample string 5",
  "UserName": "sample string 6",
  "Action": "sample string 7"
}

application/xml, text/xml

Sample:
<ComicReadingProgressDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/COMIC.Models">
  <Action>sample string 7</Action>
  <ComicId>2a74c0f9-19a6-4b80-978e-15b8daa9a516</ComicId>
  <ComicTitle>sample string 4</ComicTitle>
  <Id>6b181385-a5c0-4973-8865-9f3925ceeec7</Id>
  <IsCompleted>true</IsCompleted>
  <LastAccessedOn xmlns:d2p1="http://schemas.datacontract.org/2004/07/System">
    <d2p1:DateTime>2025-12-11T02:35:30.2203227Z</d2p1:DateTime>
    <d2p1:OffsetMinutes>0</d2p1:OffsetMinutes>
  </LastAccessedOn>
  <LastEpisodeTitle>sample string 5</LastEpisodeTitle>
  <LastReadEpisodeId>3905ca15-0596-484d-8261-c69c500ad2a7</LastReadEpisodeId>
  <ReadingProgressPercent>1.1</ReadingProgressPercent>
  <StartedOn xmlns:d2p1="http://schemas.datacontract.org/2004/07/System">
    <d2p1:DateTime>2025-12-11T02:35:30.2203227Z</d2p1:DateTime>
    <d2p1:OffsetMinutes>0</d2p1:OffsetMinutes>
  </StartedOn>
  <TotalTimeSpent>PT0.1234567S</TotalTimeSpent>
  <UserId>efb915b8-54b0-475a-b25e-0a06b02d97a4</UserId>
  <UserName>sample string 6</UserName>
</ComicReadingProgressDto>

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.