POST SaveItemQcInspectionParam_API?databaseKey={databaseKey}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
databaseKey

string

Required

Body Parameters

ItemQcInspectionParam_BO
NameDescriptionTypeAdditional information
Itemid

integer

None.

Partno

string

None.

UserName

string

None.

ItemTbl

Collection of ItemQcInspection_BO

None.

Request Formats

application/json, text/json

Sample:
{
  "Itemid": 1,
  "Partno": "sample string 2",
  "UserName": "sample string 3",
  "ItemTbl": [
    {
      "Slno": 1,
      "Parameter": "sample string 2",
      "Specification": "sample string 3",
      "InsMethod": "sample string 4",
      "Instrument": "sample string 5",
      "MaxVal": 6.0,
      "Minval": 7.0,
      "Showrange": 8.0,
      "Defaultval": 9.0,
      "InwardInsp": 10,
      "InProcInsp": 11,
      "FinalInsp": 12
    },
    {
      "Slno": 1,
      "Parameter": "sample string 2",
      "Specification": "sample string 3",
      "InsMethod": "sample string 4",
      "Instrument": "sample string 5",
      "MaxVal": 6.0,
      "Minval": 7.0,
      "Showrange": 8.0,
      "Defaultval": 9.0,
      "InwardInsp": 10,
      "InProcInsp": 11,
      "FinalInsp": 12
    }
  ]
}

application/xml, text/xml

Sample:
<ItemQcInspectionParam_BO xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Rx2025_Api.Controllers">
  <ItemTbl>
    <ItemQcInspection_BO>
      <Defaultval>9</Defaultval>
      <FinalInsp>12</FinalInsp>
      <InProcInsp>11</InProcInsp>
      <InsMethod>sample string 4</InsMethod>
      <Instrument>sample string 5</Instrument>
      <InwardInsp>10</InwardInsp>
      <MaxVal>6</MaxVal>
      <Minval>7</Minval>
      <Parameter>sample string 2</Parameter>
      <Showrange>8</Showrange>
      <Slno>1</Slno>
      <Specification>sample string 3</Specification>
    </ItemQcInspection_BO>
    <ItemQcInspection_BO>
      <Defaultval>9</Defaultval>
      <FinalInsp>12</FinalInsp>
      <InProcInsp>11</InProcInsp>
      <InsMethod>sample string 4</InsMethod>
      <Instrument>sample string 5</Instrument>
      <InwardInsp>10</InwardInsp>
      <MaxVal>6</MaxVal>
      <Minval>7</Minval>
      <Parameter>sample string 2</Parameter>
      <Showrange>8</Showrange>
      <Slno>1</Slno>
      <Specification>sample string 3</Specification>
    </ItemQcInspection_BO>
  </ItemTbl>
  <Itemid>1</Itemid>
  <Partno>sample string 2</Partno>
  <UserName>sample string 3</UserName>
</ItemQcInspectionParam_BO>

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

Response Information

Resource Description

IHttpActionResult

None.

Response Formats

application/json, text/json, application/xml, text/xml

Sample:

Sample not available.