GET Inventory/MaterialPrice?warehouseID={warehouseID}&materialID={materialID}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| warehouseID | integer |
Required |
|
| materialID | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
Collection of InventoryPrice| Name | Description | Type | Additional information |
|---|---|---|---|
| Price | decimal number |
None. |
|
| Qty | decimal number |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"Price": 1.1,
"Qty": 2.1
},
{
"Price": 1.1,
"Qty": 2.1
}
]
application/xml, text/xml
Sample:
<ArrayOfInventoryPrice xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/MKY.ERP.RG.Entity">
<InventoryPrice>
<Price>1.1</Price>
<Qty>2.1</Qty>
</InventoryPrice>
<InventoryPrice>
<Price>1.1</Price>
<Qty>2.1</Qty>
</InventoryPrice>
</ArrayOfInventoryPrice>