POST v1/Warehouses/{warehouseId}/StockCount/{stockCountId}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| warehouseId | integer |
Required. |
|
| stockCountId | integer |
Required. |
Body Parameters
UpdateStockCountArguments| Name | Description | Type | Additional information |
|---|---|---|---|
| Items | Collection of StockCountUpdateItem |
Required |
Request Formats
application/json, text/json
Sample:
{
"Items": [
{
"Sku": "sample string 1",
"Quantity": 2
},
{
"Sku": "sample string 1",
"Quantity": 2
}
]
}
application/xml, text/xml
Sample:
<UpdateStockCountArguments xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<Items>
<StockCountUpdateItem>
<Sku>sample string 1</Sku>
<Quantity>2</Quantity>
</StockCountUpdateItem>
<StockCountUpdateItem>
<Sku>sample string 1</Sku>
<Quantity>2</Quantity>
</StockCountUpdateItem>
</Items>
</UpdateStockCountArguments>
Response Information
Resource Description
StockCount| Name | Description | Type | Additional information |
|---|---|---|---|
| Id |
If of stock count record |
integer |
None. |
| StockCountGroup |
Stock count group |
StockCountGroup |
None. |
| WarehouseLocation |
Location for which the stock count needs to be performed |
WarehouseLocationBasicInfo |
None. |
| Note |
Stock count remarks |
string |
None. |
| CreatedTimestamp |
When stock count was created |
date |
None. |
| CreatedBy |
Employee who created the stock count |
EmployeeMinimalInfo |
None. |
| HandoverTimestamp |
Date when handover of stock count was acknowledged |
date |
None. |
| PlannedTimestamp |
Date when stock count was planned |
date |
None. |
| StartTimestamp |
Date when stock count was started. Can also be set after first count. |
date |
None. |
| CloseTimestamp |
Date when stock count was closed |
date |
None. |
| FinalyzeTimestamp |
Date when stock count was finalized |
date |
None. |
| FinalizedBy |
Employee who finalized the stock count |
EmployeeMinimalInfo |
None. |
| Items |
Items that should be counted |
Collection of StockCountItem |
None. |
Response Formats
application/json, text/json
Sample:
Sample not available.