POST api/GCodeManager/UpdateGCode

Request Information

URI Parameters

None.

Body Parameters

GCodeViewModel
NameDescriptionTypeAdditional information
Id

integer

None.

UniqueId

globally unique identifier

None.

DriverName

string

None.

ModifiedWhy

string

None.

ModifiedFor

string

None.

UniqueFileName

string

None.

folderPath

string

None.

ParentDriver

string

None.

IsFromV10

boolean

None.

Inactive

boolean

None.

FileName

string

None.

DriverCode

string

None.

Request Formats

application/json, text/json

Sample:
{
  "id": 1,
  "uniqueId": "7088c2c8-3c5a-43dd-89c9-e26c97ab7f15",
  "driverName": "sample string 3",
  "modifiedWhy": "sample string 4",
  "modifiedFor": "sample string 5",
  "uniqueFileName": "sample string 6",
  "folderPath": "sample string 7",
  "parentDriver": "sample string 8",
  "isFromV10": true,
  "inactive": true,
  "fileName": "sample string 9",
  "driverCode": "sample string 10"
}

application/xml, text/xml

Sample:
<GCodeViewModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/StairBiz.Contracts.ViewModels">
  <DriverCode>sample string 10</DriverCode>
  <DriverName>sample string 3</DriverName>
  <FileName>sample string 9</FileName>
  <Id>1</Id>
  <Inactive>true</Inactive>
  <IsFromV10>true</IsFromV10>
  <ModifiedFor>sample string 5</ModifiedFor>
  <ModifiedWhy>sample string 4</ModifiedWhy>
  <ParentDriver>sample string 8</ParentDriver>
  <UniqueFileName>sample string 6</UniqueFileName>
  <UniqueId>7088c2c8-3c5a-43dd-89c9-e26c97ab7f15</UniqueId>
  <folderPath>sample string 7</folderPath>
</GCodeViewModel>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

None.