PATCH v1/tags/{id}
Update tag details
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id |
tag ID |
integer |
Required |
Body Parameters
tag data
TagDto| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | integer |
None. |
|
| Parent | integer |
None. |
|
| Type | string |
None. |
|
| Name | string |
None. |
|
| Alias | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"Id": 1,
"Parent": 1,
"Type": "sample string 2",
"Name": "sample string 3",
"Alias": "sample string 4"
}
text/html
Sample:
{"Id":1,"Parent":1,"Type":"sample string 2","Name":"sample string 3","Alias":"sample string 4"}
application/xml, text/xml
Sample:
<TagDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Pd.Api.Models"> <Alias>sample string 4</Alias> <Id>1</Id> <Name>sample string 3</Name> <Parent>1</Parent> <Type>sample string 2</Type> </TagDto>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
IHttpActionResultNone.
Response Formats
application/json, text/json, text/html, application/xml, text/xml
Sample:
Sample not available.