GET stock_services/stocktake/{id}/items
This method will provide an object containing a unique download ID and a list of all items included in the specified stocktake. Multiple item lists can be provided for a single stocktake.
Request Information
Parameters
| Name | Description | Additional information |
|---|---|---|
| id | The ID of the required stocktake. |
Define this parameter in the request URI. |
Response Information
Response body formats
application/json, text/json
Sample:
{
"downloadId": 1,
"items": [
{
"id": 1,
"barcode": "sample string 2",
"alternateBarcode": "sample string 3",
"description": "sample string 4"
},
{
"id": 1,
"barcode": "sample string 2",
"alternateBarcode": "sample string 3",
"description": "sample string 4"
},
{
"id": 1,
"barcode": "sample string 2",
"alternateBarcode": "sample string 3",
"description": "sample string 4"
}
]
}