POST Web/taskattributes/savedropdownvalues
Request Information
URI Parameters
None.
Body Parameters
DropDownValuesDto| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | integer |
None. |
|
| Name | string |
None. |
|
| IsActive | boolean |
None. |
|
| IsSelected | boolean |
None. |
|
| ColumnId | integer |
None. |
|
| DropDownConfigId | integer |
None. |
|
| Position | integer |
None. |
Request Formats
application/json, text/json
Sample:
{
"Id": 1,
"Name": "sample string 2",
"IsActive": true,
"IsSelected": true,
"ColumnId": 5,
"DropDownConfigId": 6,
"Position": 1
}
text/html
Sample:
{"Id":1,"Name":"sample string 2","IsActive":true,"IsSelected":true,"ColumnId":5,"DropDownConfigId":6,"Position":1}
application/xml, text/xml
Sample:
<DropDownValuesDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Tracking.Entity"> <ColumnId>5</ColumnId> <DropDownConfigId>6</DropDownConfigId> <Id>1</Id> <IsActive>true</IsActive> <IsSelected>true</IsSelected> <Name>sample string 2</Name> <Position>1</Position> </DropDownValuesDto>
application/x-www-form-urlencoded
Sample:
Response Information
Resource Description
IHttpActionResultNone.
Response Formats
application/json, text/json, text/html, application/xml, text/xml
Sample:
Sample not available.