POST Web/taskattributes/savecheckboxvalues

Request Information

URI Parameters

None.

Body Parameters

CheckBoxValuesDto
NameDescriptionTypeAdditional information
Id

integer

None.

Name

string

None.

IsActive

boolean

None.

IsSelected

boolean

None.

ColumnId

integer

None.

CheckBoxConfigId

integer

None.

Position

integer

None.

Request Formats

application/json, text/json

Sample:
{
  "Id": 1,
  "Name": "sample string 2",
  "IsActive": true,
  "IsSelected": true,
  "ColumnId": 5,
  "CheckBoxConfigId": 6,
  "Position": 1
}

text/html

Sample:
{"Id":1,"Name":"sample string 2","IsActive":true,"IsSelected":true,"ColumnId":5,"CheckBoxConfigId":6,"Position":1}

application/xml, text/xml

Sample:
<CheckBoxValuesDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Tracking.Entity">
  <CheckBoxConfigId>6</CheckBoxConfigId>
  <ColumnId>5</ColumnId>
  <Id>1</Id>
  <IsActive>true</IsActive>
  <IsSelected>true</IsSelected>
  <Name>sample string 2</Name>
  <Position>1</Position>
</CheckBoxValuesDto>

application/x-www-form-urlencoded

Sample:

Failed to generate the sample for media type 'application/x-www-form-urlencoded'. Cannot use formatter 'JQueryMvcFormUrlEncodedFormatter' to write type 'CheckBoxValuesDto'.

Response Information

Resource Description

IHttpActionResult

None.

Response Formats

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

Sample:

Sample not available.