PUT api/Inventory/GetOnHandQtyFromERP
No documentation available.
Request Information
Parameters
| Name | Description | Additional information |
|---|---|---|
| inventoryDTO | No documentation available. |
Define this parameter in the request body. |
Request body formats
application/json, text/json
Sample:
{
"PartId": "sample string 1",
"WarehouseId": "sample string 2",
"BinId": "sample string 3",
"BatchLotNo": "sample string 4"
}
application/xml, text/xml
Sample:
<OnHandInventoryDTO xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/SMDomain.UOW.Helpers"> <BatchLotNo>sample string 4</BatchLotNo> <BinId>sample string 3</BinId> <PartId>sample string 1</PartId> <WarehouseId>sample string 2</WarehouseId> </OnHandInventoryDTO>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Response body formats
application/json, text/json
Sample:
{
"OnHandQty": 1.1,
"StatusCode": "sample string 2",
"Message": "sample string 3"
}
application/xml, text/xml
Sample:
<OnHandInventoryQtyDTO xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/SMDomain.UOW.Helpers"> <Message>sample string 3</Message> <OnHandQty>1.1</OnHandQty> <StatusCode>sample string 2</StatusCode> </OnHandInventoryQtyDTO>