POST ComicReadingProgress/Delete
Request Information
URI Parameters
None.
Body Parameters
ComicReadingProgressDto| Name | Description | Type | Additional 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": "19cdd923-bc7e-409c-a774-cbe1d8396bce",
"ComicId": "39c7566e-cbe7-49f0-b0b2-29496a992ddc",
"UserId": "409a3788-8d5d-4d35-87af-8ae9f040f245",
"LastReadEpisodeId": "de01ccd6-9f00-49b2-b6a1-e7dd0c428319",
"StartedOn": "2026-02-02T16:10:52.7416288+00:00",
"LastAccessedOn": "2026-02-02T16:10:52.7416288+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>39c7566e-cbe7-49f0-b0b2-29496a992ddc</ComicId>
<ComicTitle>sample string 4</ComicTitle>
<Id>19cdd923-bc7e-409c-a774-cbe1d8396bce</Id>
<IsCompleted>true</IsCompleted>
<LastAccessedOn xmlns:d2p1="http://schemas.datacontract.org/2004/07/System">
<d2p1:DateTime>2026-02-02T16:10:52.7416288Z</d2p1:DateTime>
<d2p1:OffsetMinutes>0</d2p1:OffsetMinutes>
</LastAccessedOn>
<LastEpisodeTitle>sample string 5</LastEpisodeTitle>
<LastReadEpisodeId>de01ccd6-9f00-49b2-b6a1-e7dd0c428319</LastReadEpisodeId>
<ReadingProgressPercent>1.1</ReadingProgressPercent>
<StartedOn xmlns:d2p1="http://schemas.datacontract.org/2004/07/System">
<d2p1:DateTime>2026-02-02T16:10:52.7416288Z</d2p1:DateTime>
<d2p1:OffsetMinutes>0</d2p1:OffsetMinutes>
</StartedOn>
<TotalTimeSpent>PT0.1234567S</TotalTimeSpent>
<UserId>409a3788-8d5d-4d35-87af-8ae9f040f245</UserId>
<UserName>sample string 6</UserName>
</ComicReadingProgressDto>
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.