GET api/Stock/WarehouseLocation?Itemcode={Itemcode}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| Itemcode | string |
Required |
Body Parameters
None.
Response Information
Resource Description
Collection of WarehouseLocation| Name | Description | Type | Additional information |
|---|---|---|---|
| Itemcode | string |
None. |
|
| Warehouse | string |
None. |
|
| DefaultWarehouse | boolean |
None. |
|
| Location | string |
None. |
|
| DefaultLocation | boolean |
None. |
|
| Stock | decimal number |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"Itemcode": "sample string 1",
"Warehouse": "sample string 2",
"DefaultWarehouse": true,
"Location": "sample string 4",
"DefaultLocation": true,
"Stock": 6.1
},
{
"Itemcode": "sample string 1",
"Warehouse": "sample string 2",
"DefaultWarehouse": true,
"Location": "sample string 4",
"DefaultLocation": true,
"Stock": 6.1
}
]
application/xml, text/xml
Sample:
<ArrayOfWarehouseLocation xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<WarehouseLocation>
<Itemcode>sample string 1</Itemcode>
<Warehouse>sample string 2</Warehouse>
<DefaultWarehouse>true</DefaultWarehouse>
<Location>sample string 4</Location>
<DefaultLocation>true</DefaultLocation>
<Stock>6.1</Stock>
</WarehouseLocation>
<WarehouseLocation>
<Itemcode>sample string 1</Itemcode>
<Warehouse>sample string 2</Warehouse>
<DefaultWarehouse>true</DefaultWarehouse>
<Location>sample string 4</Location>
<DefaultLocation>true</DefaultLocation>
<Stock>6.1</Stock>
</WarehouseLocation>
</ArrayOfWarehouseLocation>