GET api/tags?lang={lang}&count={count}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| lang | string |
None. |
|
| count | integer |
Default value is -1 |
Body Parameters
None.
Response Information
Resource Description
ResponseResultOfListOfTagInfo| Name | Description | Type | Additional information |
|---|---|---|---|
| Data | Collection of TagInfo |
None. |
|
| Message | string |
None. |
|
| Status | integer |
None. |
|
| Page | PageInfo |
None. |
Response Formats
application/json, text/json
Sample:
{
"Data": [
{
"Type": "sample string 1",
"Id": 2,
"TagName": "sample string 3",
"Name": "sample string 4",
"Color": "sample string 5",
"Url": "sample string 6"
},
{
"Type": "sample string 1",
"Id": 2,
"TagName": "sample string 3",
"Name": "sample string 4",
"Color": "sample string 5",
"Url": "sample string 6"
}
],
"Message": "sample string 1",
"Status": 2,
"Page": {
"PageIndex": 1,
"PageTotal": 2,
"DataTotal": 3,
"PostSize": 4,
"TagSize": 5,
"ThemeSize": 6
}
}
application/xml, text/xml
Sample:
<ResponseResultOfArrayOfTagInfoGyUkcEtJ xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BlogAdmin.Models">
<Data>
<TagInfo>
<Color>sample string 5</Color>
<Id>2</Id>
<Name>sample string 4</Name>
<TagName>sample string 3</TagName>
<Type>sample string 1</Type>
<Url>sample string 6</Url>
</TagInfo>
<TagInfo>
<Color>sample string 5</Color>
<Id>2</Id>
<Name>sample string 4</Name>
<TagName>sample string 3</TagName>
<Type>sample string 1</Type>
<Url>sample string 6</Url>
</TagInfo>
</Data>
<Message>sample string 1</Message>
<Page>
<DataTotal>3</DataTotal>
<PageIndex>1</PageIndex>
<PageTotal>2</PageTotal>
<PostSize>4</PostSize>
<TagSize>5</TagSize>
<ThemeSize>6</ThemeSize>
</Page>
<Status>2</Status>
</ResponseResultOfArrayOfTagInfoGyUkcEtJ>