PUT api/v1/tags/{code}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| code | string |
Required |
Body Parameters
TagDto| Name | Description | Type | Additional 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": "b3fc4c1f-366d-4fb0-b508-0039201dda2f",
"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>b3fc4c1f-366d-4fb0-b508-0039201dda2f</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
IHttpActionResultNone.
Response Formats
application/json, text/json, application/xml, text/xml
Sample:
Sample not available.