GET api/Tags
Fetch a list of all tags
Request Information
URI Parameters
None.
Body Parameters
None.
Response Information
Resource Description
ListResultOfTag| Name | Description | Type | Additional information |
|---|---|---|---|
| TotalCount | integer |
None. |
|
| Items | Collection of Tag |
None. |
Response Formats
application/json, text/json
Sample:
{
"TotalCount": 1,
"Items": [
{
"Text": "sample string 1",
"Id": 2
},
{
"Text": "sample string 1",
"Id": 2
}
]
}
application/xml, text/xml
Sample:
<ListResultOfTagHWVxl9UY xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ControlKeeper.ApiModel">
<Items>
<Tag>
<Id>2</Id>
<Text>sample string 1</Text>
</Tag>
<Tag>
<Id>2</Id>
<Text>sample string 1</Text>
</Tag>
</Items>
<TotalCount>1</TotalCount>
</ListResultOfTagHWVxl9UY>
