GET api/ic/getstockcounts?stockTakeId={stockTakeId}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| stockTakeId | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
Collection of StockCount| Name | Description | Type | Additional information |
|---|---|---|---|
| CountId | integer |
None. |
|
| StockTakeId | integer |
None. |
|
| Details | string |
None. |
|
| CountStatus | string |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"CountId": 1,
"StockTakeId": 2,
"Details": "sample string 3",
"CountStatus": "sample string 4"
},
{
"CountId": 1,
"StockTakeId": 2,
"Details": "sample string 3",
"CountStatus": "sample string 4"
}
]
application/xml, text/xml
Sample:
<ArrayOfStockCount xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/AccredoWeb.Model.IC">
<StockCount>
<CountId>1</CountId>
<CountStatus>sample string 4</CountStatus>
<Details>sample string 3</Details>
<StockTakeId>2</StockTakeId>
</StockCount>
<StockCount>
<CountId>1</CountId>
<CountStatus>sample string 4</CountStatus>
<Details>sample string 3</Details>
<StockTakeId>2</StockTakeId>
</StockCount>
</ArrayOfStockCount>