POST ComicReadingProgress/GetById
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": "5d52e88d-95ca-4035-8225-6a69ebfa8e40",
"ComicId": "51dc0d86-d74d-4793-ba34-d70b29f9244e",
"UserId": "addc30ee-60bd-435f-b3e9-0a90bb12e967",
"LastReadEpisodeId": "669d1716-30ec-4fea-aba4-1398301860b4",
"StartedOn": "2026-02-02T16:10:37.4365969+00:00",
"LastAccessedOn": "2026-02-02T16:10:37.4365969+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>51dc0d86-d74d-4793-ba34-d70b29f9244e</ComicId>
<ComicTitle>sample string 4</ComicTitle>
<Id>5d52e88d-95ca-4035-8225-6a69ebfa8e40</Id>
<IsCompleted>true</IsCompleted>
<LastAccessedOn xmlns:d2p1="http://schemas.datacontract.org/2004/07/System">
<d2p1:DateTime>2026-02-02T16:10:37.4365969Z</d2p1:DateTime>
<d2p1:OffsetMinutes>0</d2p1:OffsetMinutes>
</LastAccessedOn>
<LastEpisodeTitle>sample string 5</LastEpisodeTitle>
<LastReadEpisodeId>669d1716-30ec-4fea-aba4-1398301860b4</LastReadEpisodeId>
<ReadingProgressPercent>1.1</ReadingProgressPercent>
<StartedOn xmlns:d2p1="http://schemas.datacontract.org/2004/07/System">
<d2p1:DateTime>2026-02-02T16:10:37.4365969Z</d2p1:DateTime>
<d2p1:OffsetMinutes>0</d2p1:OffsetMinutes>
</StartedOn>
<TotalTimeSpent>PT0.1234567S</TotalTimeSpent>
<UserId>addc30ee-60bd-435f-b3e9-0a90bb12e967</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.