GET api/Tag/Get/{id}

Retrieves the tag with the given Id.

Request Information

Parameters

NameDescriptionAdditional information
id
The Id to retrieve

Define this parameter in the request URI.

Response Information

Response body formats

application/json, text/json

Sample:
{
  "description": "sample string 1",
  "is_product": true,
  "name": "sample string 3",
  "id": 1
}

application/xml, text/xml

Sample:
<tag xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Ticket.Api.Org">
  <id xmlns="http://schemas.datacontract.org/2004/07/Ticket.Api">1</id>
  <description>sample string 1</description>
  <is_product>true</is_product>
  <name>sample string 3</name>
</tag>