GET v1/Warehouses/{warehouseId}/StockCountGroup
Return list of stock count groups for a warehouse
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| warehouseId |
Id of warehouse |
integer |
Required. |
Body Parameters
None.
Response Information
Resource Description
List of stock count groups
Collection of StockCountGroup| Name | Description | Type | Additional information |
|---|---|---|---|
| Id |
If of group |
integer |
None. |
| Name |
Name of group |
string |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"Id": 1,
"Name": "sample string 2"
},
{
"Id": 1,
"Name": "sample string 2"
}
]
application/xml, text/xml
Sample:
<ArrayOfStockCountGroup xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<StockCountGroup>
<Id>1</Id>
<Name>sample string 2</Name>
</StockCountGroup>
<StockCountGroup>
<Id>1</Id>
<Name>sample string 2</Name>
</StockCountGroup>
</ArrayOfStockCountGroup>