GET api/Tags/{id}
Fetch a specific tag
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
Tag| Name | Description | Type | Additional information |
|---|---|---|---|
| Text | string |
None. |
|
| Id | integer |
None. |
Response Formats
application/json, text/json
Sample:
{
"Text": "sample string 1",
"Id": 2
}
application/xml, text/xml
Sample:
<Tag xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ControlKeeper.ApiModel"> <Id>2</Id> <Text>sample string 1</Text> </Tag>
