GET api/ic/generatestockcount?stockTakeId={stockTakeId}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
stockTakeId

integer

Required

Body Parameters

None.

Response Information

Resource Description

StockCount
NameDescriptionTypeAdditional 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"
}

application/xml, text/xml

Sample:
<StockCount xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/AccredoWeb.Model.IC">
  <CountId>1</CountId>
  <CountStatus>sample string 4</CountStatus>
  <Details>sample string 3</Details>
  <StockTakeId>2</StockTakeId>
</StockCount>