GET api/QCFactor/{id}

GET api/QCFactor/{id}

returns the Quality Control Factor with the given id

Request Information

URI Parameters

NameDescriptionTypeAdditional information
id

string

Required

Body Parameters

None.

Response Information

Resource Description

QCFactor
NameDescriptionTypeAdditional information
internalCode

string

None.

Code

string

None.

Name

string

None.

IsNumericValue

boolean

None.

ValueFrom

decimal number

None.

ValueTo

decimal number

None.

OverAll

QCFactor is a general Value for all order items

boolean

None.

ListPos

Sorting Order for Presentation

integer

None.

QMpossibleActions

Collection of string

None.

Response Formats

application/json, text/json

Sample:
{
  "internalCode": "sample string 1",
  "Code": "sample string 2",
  "Name": "sample string 3",
  "IsNumericValue": true,
  "ValueFrom": 5.1,
  "ValueTo": 6.1,
  "OverAll": true,
  "ListPos": 8,
  "QMpossibleActions": [
    "sample string 1",
    "sample string 2"
  ]
}

application/xml, text/xml

Sample:
<QCFactor xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/KOSTIFC">
  <Code>sample string 2</Code>
  <IsNumericValue>true</IsNumericValue>
  <ListPos>8</ListPos>
  <Name>sample string 3</Name>
  <OverAll>true</OverAll>
  <QMpossibleActions xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
    <d2p1:string>sample string 1</d2p1:string>
    <d2p1:string>sample string 2</d2p1:string>
  </QMpossibleActions>
  <ValueFrom>5.1</ValueFrom>
  <ValueTo>6.1</ValueTo>
  <internalCode>sample string 1</internalCode>
</QCFactor>