POST stock_services/result

Results of a stock count (either delivery or stocktake) may be posted to this endpoint to update quantities. Result files should specify the download ID that was provided with the initial item list and a set of item codes and quantities. After a result file has been uploaded for a specific download ID, subsequent result files with the same download ID will be ignored.

Request Information

Parameters

NameDescriptionAdditional information
result
The count result object to be processed.

Define this parameter in the request body.

Request body formats

application/json, text/json

Sample:
{
  "downloadId": 1,
  "scannerName": "sample string 2",
  "itemCounts": [
    {
      "itemId": 1,
      "quantity": 2
    },
    {
      "itemId": 1,
      "quantity": 2
    },
    {
      "itemId": 1,
      "quantity": 2
    }
  ]
}