POST api/GetFocusPictures
Request Information
URI Parameters
None.
Body Parameters
None.
Response Information
Resource Description
Collection of News| Name | Description | Type | Additional information |
|---|---|---|---|
| ID |
编号 |
string |
None. |
| ThumbUrl |
缩略图 |
string |
None. |
| Genre |
栏目/类型 |
FocusPictureGenres |
None. |
| Title |
标题 |
string |
None. |
| ViewAmounts |
阅读量 |
integer |
None. |
| Time |
发布时间 |
date |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"ID": "sample string 1",
"ThumbUrl": "sample string 2",
"Genre": 1,
"Title": "sample string 3",
"ViewAmounts": 4,
"Time": "2025-11-03T18:21:31.1598169+08:00"
},
{
"ID": "sample string 1",
"ThumbUrl": "sample string 2",
"Genre": 1,
"Title": "sample string 3",
"ViewAmounts": 4,
"Time": "2025-11-03T18:21:31.1598169+08:00"
}
]
application/xml, text/xml
Sample:
<ArrayOfNews xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ArtizanAPI.Models">
<News>
<Genre>抽奖</Genre>
<ID>sample string 1</ID>
<ThumbUrl>sample string 2</ThumbUrl>
<Time>2025-11-03T18:21:31.1598169+08:00</Time>
<Title>sample string 3</Title>
<ViewAmounts>4</ViewAmounts>
</News>
<News>
<Genre>抽奖</Genre>
<ID>sample string 1</ID>
<ThumbUrl>sample string 2</ThumbUrl>
<Time>2025-11-03T18:21:31.1598169+08:00</Time>
<Title>sample string 3</Title>
<ViewAmounts>4</ViewAmounts>
</News>
</ArrayOfNews>