POST api/ProductionUpdate

Request Information

URI Parameters

None.

Body Parameters

MachineProductionDetails
NameDescriptionTypeAdditional information
MachineID

integer

None.

TypeID

integer

None.

Qty

decimal number

None.

JobOrderID

integer

None.

IsCompleted

boolean

None.

UnitID

integer

None.

ItemGroupID

integer

None.

CreatedBy

integer

None.

Request Formats

application/json, text/json

Sample:
{
  "MachineID": 1,
  "TypeID": 2,
  "Qty": 3.0,
  "JobOrderID": 4,
  "IsCompleted": true,
  "UnitID": 6,
  "ItemGroupID": 7,
  "CreatedBy": 8
}

application/xml, text/xml

Sample:
<MachineProductionDetails xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Entity">
  <CreatedBy>8</CreatedBy>
  <IsCompleted>true</IsCompleted>
  <ItemGroupID>7</ItemGroupID>
  <JobOrderID>4</JobOrderID>
  <MachineID>1</MachineID>
  <Qty>3</Qty>
  <TypeID>2</TypeID>
  <UnitID>6</UnitID>
</MachineProductionDetails>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

boolean

Response Formats

application/json, text/json

Sample:
true

application/xml, text/xml

Sample:
<boolean xmlns="http://schemas.microsoft.com/2003/10/Serialization/">true</boolean>