POST api/CncPreferences/UpdateToolConfig

Request Information

URI Parameters

None.

Body Parameters

ToolConfigViewModel
NameDescriptionTypeAdditional information
ToolGroup

integer

None.

ToolCut

integer

None.

Name

string

None.

Description

string

None.

Value

string

None.

ToolIndex

integer

None.

Request Formats

application/json, text/json

Sample:
{
  "toolGroup": 1,
  "toolCut": 2,
  "name": "sample string 3",
  "description": "sample string 4",
  "value": "sample string 5",
  "toolIndex": 6
}

application/xml, text/xml

Sample:
<ToolConfigViewModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/StairBiz.Contracts.ViewModels">
  <Description>sample string 4</Description>
  <Name>sample string 3</Name>
  <ToolCut>2</ToolCut>
  <ToolGroup>1</ToolGroup>
  <ToolIndex>6</ToolIndex>
  <Value>sample string 5</Value>
</ToolConfigViewModel>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

None.