POST api/WasteBinUpdate
Request Information
URI Parameters
None.
Body Parameters
MachineWasteDetails| Name | Description | Type | Additional information |
|---|---|---|---|
| MachineID | integer |
None. |
|
| TypeID | integer |
None. |
|
| WasteQty | decimal number |
None. |
|
| JobOrderID | integer |
None. |
|
| EmployeeID | integer |
None. |
|
| CreatedBy | integer |
None. |
|
| WasteBinID | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"MachineID": 1,
"TypeID": 2,
"WasteQty": 3.0,
"JobOrderID": 4,
"EmployeeID": 5,
"CreatedBy": 6,
"WasteBinID": "sample string 7"
}
application/xml, text/xml
Sample:
<MachineWasteDetails xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Entity"> <CreatedBy>6</CreatedBy> <EmployeeID>5</EmployeeID> <JobOrderID>4</JobOrderID> <MachineID>1</MachineID> <TypeID>2</TypeID> <WasteBinID>sample string 7</WasteBinID> <WasteQty>3</WasteQty> </MachineWasteDetails>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
booleanResponse Formats
application/json, text/json
Sample:
true
application/xml, text/xml
Sample:
<boolean xmlns="http://schemas.microsoft.com/2003/10/Serialization/">true</boolean>