POST UpdateDefectCorrection_Lite

Request Information

URI Parameters

None.

Body Parameters

DefectCorrectionList
NameDescriptionTypeAdditional information
CorrectedData

Collection of DefectCorrection

None.

Line

string

None.

CheckSheetid

string

None.

Request Formats

application/json, text/json

Sample:
{
  "CorrectedData": [
    {
      "ChecksheetGuid": "sample string 1",
      "Line": "sample string 2",
      "ParameterGuid": "sample string 3",
      "Values": "sample string 4",
      "DataType": "sample string 5",
      "LSL": "sample string 6",
      "USL": "sample string 7",
      "LCL": "sample string 8",
      "UCL": "sample string 9",
      "Remarks": "sample string 10",
      "RejectReason": "sample string 11"
    },
    {
      "ChecksheetGuid": "sample string 1",
      "Line": "sample string 2",
      "ParameterGuid": "sample string 3",
      "Values": "sample string 4",
      "DataType": "sample string 5",
      "LSL": "sample string 6",
      "USL": "sample string 7",
      "LCL": "sample string 8",
      "UCL": "sample string 9",
      "Remarks": "sample string 10",
      "RejectReason": "sample string 11"
    }
  ],
  "Line": "sample string 1",
  "CheckSheetid": "sample string 2"
}

application/xml, text/xml

Sample:
<DefectCorrectionList xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/CEAT_Audit_WebAPI.Controllers">
  <CheckSheetid>sample string 2</CheckSheetid>
  <CorrectedData>
    <DefectCorrection>
      <ChecksheetGuid>sample string 1</ChecksheetGuid>
      <DataType>sample string 5</DataType>
      <LCL>sample string 8</LCL>
      <LSL>sample string 6</LSL>
      <Line>sample string 2</Line>
      <ParameterGuid>sample string 3</ParameterGuid>
      <RejectReason>sample string 11</RejectReason>
      <Remarks>sample string 10</Remarks>
      <UCL>sample string 9</UCL>
      <USL>sample string 7</USL>
      <Values>sample string 4</Values>
    </DefectCorrection>
    <DefectCorrection>
      <ChecksheetGuid>sample string 1</ChecksheetGuid>
      <DataType>sample string 5</DataType>
      <LCL>sample string 8</LCL>
      <LSL>sample string 6</LSL>
      <Line>sample string 2</Line>
      <ParameterGuid>sample string 3</ParameterGuid>
      <RejectReason>sample string 11</RejectReason>
      <Remarks>sample string 10</Remarks>
      <UCL>sample string 9</UCL>
      <USL>sample string 7</USL>
      <Values>sample string 4</Values>
    </DefectCorrection>
  </CorrectedData>
  <Line>sample string 1</Line>
</DefectCorrectionList>

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 'DefectCorrectionList'.

Response Information

Resource Description

DefectCorrectionOut
NameDescriptionTypeAdditional information
Issucess

boolean

None.

Response Formats

application/json, text/json

Sample:
{
  "Issucess": true
}

application/xml, text/xml

Sample:
<DefectCorrectionOut xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/CEAT_Audit_WebAPI.Controllers">
  <Issucess>true</Issucess>
</DefectCorrectionOut>