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": "dcdd0c56-1a78-42c8-b552-5284347d0917",
"ComicId": "9509b974-4352-4d23-b7d9-98fd6c6f6144",
"UserId": "50dc7990-25fd-4ea1-9cf0-3978701f6e2d",
"LastReadEpisodeId": "1c35f010-6f88-44f7-ad6a-ca45b30ba604",
"StartedOn": "2025-12-11T02:34:32.1673501+00:00",
"LastAccessedOn": "2025-12-11T02:34:32.1673501+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>9509b974-4352-4d23-b7d9-98fd6c6f6144</ComicId>
<ComicTitle>sample string 4</ComicTitle>
<Id>dcdd0c56-1a78-42c8-b552-5284347d0917</Id>
<IsCompleted>true</IsCompleted>
<LastAccessedOn xmlns:d2p1="http://schemas.datacontract.org/2004/07/System">
<d2p1:DateTime>2025-12-11T02:34:32.1673501Z</d2p1:DateTime>
<d2p1:OffsetMinutes>0</d2p1:OffsetMinutes>
</LastAccessedOn>
<LastEpisodeTitle>sample string 5</LastEpisodeTitle>
<LastReadEpisodeId>1c35f010-6f88-44f7-ad6a-ca45b30ba604</LastReadEpisodeId>
<ReadingProgressPercent>1.1</ReadingProgressPercent>
<StartedOn xmlns:d2p1="http://schemas.datacontract.org/2004/07/System">
<d2p1:DateTime>2025-12-11T02:34:32.1673501Z</d2p1:DateTime>
<d2p1:OffsetMinutes>0</d2p1:OffsetMinutes>
</StartedOn>
<TotalTimeSpent>PT0.1234567S</TotalTimeSpent>
<UserId>50dc7990-25fd-4ea1-9cf0-3978701f6e2d</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.