PUT api/v1/tags/{code}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
code

string

Required

Body Parameters

TagDto
NameDescriptionTypeAdditional information
Id

globally unique identifier

None.

Name

string

None.

Code

string

None.

TagGroupCode

string

None.

TagGroupName

string

None.

TagTypeCode

string

None.

TagTypeName

string

None.

OrderInTagGroup

integer

None.

IsNegable

boolean

None.

Request Formats

application/json, text/json

Sample:
{
  "id": "6caf40ab-b81b-42e6-a8ec-2670bc4ee423",
  "name": "sample string 1",
  "code": "sample string 2",
  "tagGroupCode": "sample string 3",
  "tagGroupName": "sample string 4",
  "tagTypeCode": "sample string 5",
  "tagTypeName": "sample string 6",
  "orderInTagGroup": 7,
  "isNegable": true
}

application/xml, text/xml

Sample:
<TagDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Domain.Dtos">
  <Code>sample string 2</Code>
  <Id>6caf40ab-b81b-42e6-a8ec-2670bc4ee423</Id>
  <IsNegable>true</IsNegable>
  <Name>sample string 1</Name>
  <OrderInTagGroup>7</OrderInTagGroup>
  <TagGroupCode>sample string 3</TagGroupCode>
  <TagGroupName>sample string 4</TagGroupName>
  <TagTypeCode>sample string 5</TagTypeCode>
  <TagTypeName>sample string 6</TagTypeName>
</TagDto>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

IHttpActionResult

None.

Response Formats

application/json, text/json, application/xml, text/xml

Sample:

Sample not available.