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": "c1fdcc8b-72df-40bd-aa03-214b3e938a1d",
"ComicId": "5e8715f1-5385-40c7-9de6-66ff8bcd3313",
"UserId": "70ec9527-ffa0-494f-8626-b00e839bf4ef",
"LastReadEpisodeId": "9fad73d9-1bb5-4304-9417-7ad2a7b62e57",
"StartedOn": "2026-04-11T08:10:40.5360831+00:00",
"LastAccessedOn": "2026-04-11T08:10:40.5360831+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>5e8715f1-5385-40c7-9de6-66ff8bcd3313</ComicId>
<ComicTitle>sample string 4</ComicTitle>
<Id>c1fdcc8b-72df-40bd-aa03-214b3e938a1d</Id>
<IsCompleted>true</IsCompleted>
<LastAccessedOn xmlns:d2p1="http://schemas.datacontract.org/2004/07/System">
<d2p1:DateTime>2026-04-11T08:10:40.5360831Z</d2p1:DateTime>
<d2p1:OffsetMinutes>0</d2p1:OffsetMinutes>
</LastAccessedOn>
<LastEpisodeTitle>sample string 5</LastEpisodeTitle>
<LastReadEpisodeId>9fad73d9-1bb5-4304-9417-7ad2a7b62e57</LastReadEpisodeId>
<ReadingProgressPercent>1.1</ReadingProgressPercent>
<StartedOn xmlns:d2p1="http://schemas.datacontract.org/2004/07/System">
<d2p1:DateTime>2026-04-11T08:10:40.5360831Z</d2p1:DateTime>
<d2p1:OffsetMinutes>0</d2p1:OffsetMinutes>
</StartedOn>
<TotalTimeSpent>PT0.1234567S</TotalTimeSpent>
<UserId>70ec9527-ffa0-494f-8626-b00e839bf4ef</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.