POST ComicReadingProgress/Update
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": "fd452928-a2de-4435-ad54-2ad81eaa3eb1",
"ComicId": "436e8fc9-c86a-4b06-9f26-d6f940427558",
"UserId": "a97aefdf-c105-4434-84f0-aa5f46e061fc",
"LastReadEpisodeId": "0c55f764-83c5-496c-a325-52af169b44aa",
"StartedOn": "2026-02-02T16:09:10.5326032+00:00",
"LastAccessedOn": "2026-02-02T16:09:10.5326032+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>436e8fc9-c86a-4b06-9f26-d6f940427558</ComicId>
<ComicTitle>sample string 4</ComicTitle>
<Id>fd452928-a2de-4435-ad54-2ad81eaa3eb1</Id>
<IsCompleted>true</IsCompleted>
<LastAccessedOn xmlns:d2p1="http://schemas.datacontract.org/2004/07/System">
<d2p1:DateTime>2026-02-02T16:09:10.5326032Z</d2p1:DateTime>
<d2p1:OffsetMinutes>0</d2p1:OffsetMinutes>
</LastAccessedOn>
<LastEpisodeTitle>sample string 5</LastEpisodeTitle>
<LastReadEpisodeId>0c55f764-83c5-496c-a325-52af169b44aa</LastReadEpisodeId>
<ReadingProgressPercent>1.1</ReadingProgressPercent>
<StartedOn xmlns:d2p1="http://schemas.datacontract.org/2004/07/System">
<d2p1:DateTime>2026-02-02T16:09:10.5326032Z</d2p1:DateTime>
<d2p1:OffsetMinutes>0</d2p1:OffsetMinutes>
</StartedOn>
<TotalTimeSpent>PT0.1234567S</TotalTimeSpent>
<UserId>a97aefdf-c105-4434-84f0-aa5f46e061fc</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.