GET api/StockTakePickItem/{DB}/{StockTakeGroupID}/{StockLocationID}/{StockListID}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
DB

string

Required

StockTakeGroupID

integer

Required

StockLocationID

integer

Required

StockListID

integer

Required

Body Parameters

None.

Response Information

Resource Description

Collection of StockTakeResults
NameDescriptionTypeAdditional information
StockListID

integer

None.

QuantityBeforeStockTake

decimal number

None.

StockTakeQuantity

decimal number

None.

AdjustmentQuantity

decimal number

None.

Code

string

None.

BarCode

string

None.

Brand

string

None.

Stock_Group

string

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "StockListID": 1,
    "QuantityBeforeStockTake": 2.0,
    "StockTakeQuantity": 3.0,
    "AdjustmentQuantity": 4.0,
    "Code": "sample string 5",
    "BarCode": "sample string 6",
    "Brand": "sample string 7",
    "Stock_Group": "sample string 8"
  },
  {
    "StockListID": 1,
    "QuantityBeforeStockTake": 2.0,
    "StockTakeQuantity": 3.0,
    "AdjustmentQuantity": 4.0,
    "Code": "sample string 5",
    "BarCode": "sample string 6",
    "Brand": "sample string 7",
    "Stock_Group": "sample string 8"
  }
]

application/xml, text/xml

Sample:
<ArrayOfStockTakeResults xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/AdroitERPWebApis">
  <StockTakeResults>
    <AdjustmentQuantity>4</AdjustmentQuantity>
    <BarCode>sample string 6</BarCode>
    <Brand>sample string 7</Brand>
    <Code>sample string 5</Code>
    <QuantityBeforeStockTake>2</QuantityBeforeStockTake>
    <StockListID>1</StockListID>
    <StockTakeQuantity>3</StockTakeQuantity>
    <Stock_Group>sample string 8</Stock_Group>
  </StockTakeResults>
  <StockTakeResults>
    <AdjustmentQuantity>4</AdjustmentQuantity>
    <BarCode>sample string 6</BarCode>
    <Brand>sample string 7</Brand>
    <Code>sample string 5</Code>
    <QuantityBeforeStockTake>2</QuantityBeforeStockTake>
    <StockListID>1</StockListID>
    <StockTakeQuantity>3</StockTakeQuantity>
    <Stock_Group>sample string 8</Stock_Group>
  </StockTakeResults>
</ArrayOfStockTakeResults>