GET api/MicroDramaV770/WatchHistory?page={page}&size={size}
观看历史列表
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| page | integer |
Default value is 1 |
|
| size | integer |
Default value is 20 |
Body Parameters
None.
Response Information
Resource Description
ZaiMieApp.WebApi.ViewModel.ResultDataOfZaiMieApp.WebApi.ViewModel.DramaHistoryView| Name | Description | Type | Additional information |
|---|---|---|---|
| recordsetCount | integer |
None. |
|
| pageSize | integer |
None. |
|
| page | integer |
None. |
|
| allPage | integer |
None. |
|
| message | string |
None. |
|
| success | boolean |
None. |
|
| code | integer |
None. |
|
| data | Collection of ZaiMieApp.WebApi.ViewModel.DramaHistoryView |
None. |
Response Formats
application/json, text/json
Sample:
{
"recordsetCount": 1,
"pageSize": 2,
"page": 3,
"allPage": 4,
"message": "sample string 5",
"success": true,
"code": 7,
"data": [
{
"dramaId": 1,
"title": "sample string 2",
"cover": "sample string 3",
"episodeNumber": 4,
"progress": 5,
"watchTime": "sample string 6"
},
{
"dramaId": 1,
"title": "sample string 2",
"cover": "sample string 3",
"episodeNumber": 4,
"progress": 5,
"watchTime": "sample string 6"
}
]
}
application/xml, text/xml
Sample:
<ResultDataOfDramaHistoryViewPr2Hy9OI xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ZaiMieApp.WebApi.ViewModel">
<allPage>4</allPage>
<code>7</code>
<data>
<DramaHistoryView>
<cover>sample string 3</cover>
<dramaId>1</dramaId>
<episodeNumber>4</episodeNumber>
<progress>5</progress>
<title>sample string 2</title>
<watchTime>sample string 6</watchTime>
</DramaHistoryView>
<DramaHistoryView>
<cover>sample string 3</cover>
<dramaId>1</dramaId>
<episodeNumber>4</episodeNumber>
<progress>5</progress>
<title>sample string 2</title>
<watchTime>sample string 6</watchTime>
</DramaHistoryView>
</data>
<message>sample string 5</message>
<page>3</page>
<pageSize>2</pageSize>
<recordsetCount>1</recordsetCount>
<success>true</success>
</ResultDataOfDramaHistoryViewPr2Hy9OI>