PUT v1/Warehouses/{warehouseId}/StockCountGroup/{stockCountGroupId}
Update details of stock count group
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| warehouseId |
If of warehouse |
integer |
Required. |
| stockCountGroupId |
id of stock count group |
integer |
Required. |
Body Parameters
parameters
UpdateStockCountGroup| Name | Description | Type | Additional information |
|---|---|---|---|
| Name |
Name of group |
string |
Required |
Request Formats
application/json, text/json
Sample:
{
"Name": "sample string 1"
}
application/xml, text/xml
Sample:
<UpdateStockCountGroup xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <Name>sample string 1</Name> </UpdateStockCountGroup>
Response Information
Resource Description
Updated stock count group
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"
}
application/xml, text/xml
Sample:
<StockCountGroup xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <Id>1</Id> <Name>sample string 2</Name> </StockCountGroup>