GET api/GCodeManager/InitializeGCodes?showAll={showAll}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
showAll

boolean

Required

Body Parameters

None.

Response Information

Resource Description

Collection of 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.

Response Formats

application/json, text/json

Sample:
[
  {
    "id": 1,
    "uniqueId": "f7e123bc-7855-4e98-a109-a2b7229facbe",
    "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"
  },
  {
    "id": 1,
    "uniqueId": "f7e123bc-7855-4e98-a109-a2b7229facbe",
    "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:
<ArrayOfGCodeViewModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/StairBiz.Contracts.ViewModels">
  <GCodeViewModel>
    <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>f7e123bc-7855-4e98-a109-a2b7229facbe</UniqueId>
    <folderPath>sample string 7</folderPath>
  </GCodeViewModel>
  <GCodeViewModel>
    <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>f7e123bc-7855-4e98-a109-a2b7229facbe</UniqueId>
    <folderPath>sample string 7</folderPath>
  </GCodeViewModel>
</ArrayOfGCodeViewModel>