POST api/CustomerTag/GetTagByName

Request Information

URI Parameters

None.

Body Parameters

GetTagByNameRequest
NameDescriptionTypeAdditional information
TagName

string

None.

Request Formats

application/json, text/json

Sample:
{
  "TagName": "sample string 1"
}

application/xml, text/xml

Sample:
<GetTagByNameRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BusinessLayer.Dto.Request">
  <TagName>sample string 1</TagName>
</GetTagByNameRequest>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

GetTagByNameResponse
NameDescriptionTypeAdditional information
Id

integer

None.

Type

string

None.

Name

string

None.

Response Formats

application/json, text/json

Sample:
{
  "Id": 1,
  "Type": "sample string 2",
  "Name": "sample string 3"
}

application/xml, text/xml

Sample:
<GetTagByNameResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BusinessLayer.Dto.Response">
  <Id>1</Id>
  <Name>sample string 3</Name>
  <Type>sample string 2</Type>
</GetTagByNameResponse>