GET api/Tags/GetTag/{id}

Gets Tag's details.

Request Information

URI Parameters

NameDescriptionTypeAdditional information
id

Id of the Tag

integer

Required

Body Parameters

None.

Response Information

Resource Description

GetTagResult
NameDescriptionTypeAdditional information
Tag

A page with tags.

TagData

None.

Response Formats

application/json, text/json

Sample:
{
  "Tag": {
    "Id": 1,
    "Name": "Sample tag",
    "Static": true,
    "Color": "#ffffff",
    "Type": 1
  }
}

application/xml, text/xml

Sample:
<GetTagResult xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/RequestorApiDataStructures.Results">
  <Tag xmlns:d2p1="http://schemas.datacontract.org/2004/07/RequestorApiDataStructures.DataStructures">
    <d2p1:Color>#ffffff</d2p1:Color>
    <d2p1:Id>1</d2p1:Id>
    <d2p1:Name>Sample tag</d2p1:Name>
    <d2p1:Static>true</d2p1:Static>
    <d2p1:Type>Ticket</d2p1:Type>
  </Tag>
</GetTagResult>