POST api/ic/stocktake
Request Information
URI Parameters
None.
Body Parameters
Collection of StockCountLineName | Description | Type | Additional information |
---|---|---|---|
CountId | integer |
None. |
|
StockTakeId | integer |
None. |
|
LineId | integer |
None. |
|
ProductCode | string |
None. |
|
Description | string |
None. |
|
Barcode | string |
None. |
|
Barcodes | Collection of ProductBarcode |
None. |
|
AlternateCode | string |
None. |
|
Unit | string |
None. |
|
QuantityCounted | decimal number |
None. |
|
QuantityExpected | decimal number |
None. |
Request Formats
application/json, text/json
Sample:
[ { "CountId": 1, "StockTakeId": 2, "LineId": 3, "ProductCode": "sample string 4", "Description": "sample string 5", "Barcode": "sample string 6", "Barcodes": [ { "Barcode": "sample string 1" }, { "Barcode": "sample string 1" } ], "AlternateCode": "sample string 7", "Unit": "sample string 8", "QuantityCounted": 9.0, "QuantityExpected": 10.0 }, { "CountId": 1, "StockTakeId": 2, "LineId": 3, "ProductCode": "sample string 4", "Description": "sample string 5", "Barcode": "sample string 6", "Barcodes": [ { "Barcode": "sample string 1" }, { "Barcode": "sample string 1" } ], "AlternateCode": "sample string 7", "Unit": "sample string 8", "QuantityCounted": 9.0, "QuantityExpected": 10.0 } ]
application/xml, text/xml
Sample:
<ArrayOfStockCountLine xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/AccredoWeb.Model.IC"> <StockCountLine> <AlternateCode>sample string 7</AlternateCode> <Barcode>sample string 6</Barcode> <Barcodes> <ProductBarcode> <Barcode>sample string 1</Barcode> </ProductBarcode> <ProductBarcode> <Barcode>sample string 1</Barcode> </ProductBarcode> </Barcodes> <CountId>1</CountId> <Description>sample string 5</Description> <LineId>3</LineId> <ProductCode>sample string 4</ProductCode> <QuantityCounted>9</QuantityCounted> <QuantityExpected>10</QuantityExpected> <StockTakeId>2</StockTakeId> <Unit>sample string 8</Unit> </StockCountLine> <StockCountLine> <AlternateCode>sample string 7</AlternateCode> <Barcode>sample string 6</Barcode> <Barcodes> <ProductBarcode> <Barcode>sample string 1</Barcode> </ProductBarcode> <ProductBarcode> <Barcode>sample string 1</Barcode> </ProductBarcode> </Barcodes> <CountId>1</CountId> <Description>sample string 5</Description> <LineId>3</LineId> <ProductCode>sample string 4</ProductCode> <QuantityCounted>9</QuantityCounted> <QuantityExpected>10</QuantityExpected> <StockTakeId>2</StockTakeId> <Unit>sample string 8</Unit> </StockCountLine> </ArrayOfStockCountLine>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
integerResponse Formats
application/json, text/json
Sample:
1
application/xml, text/xml
Sample:
<int xmlns="http://schemas.microsoft.com/2003/10/Serialization/">1</int>