Back

Search

Search

Methods

Inventory

OrderPrintStatus
Orders

Stock /UpdateStockLevelsBySKU

Allows 150 calls per minute

Response: List<StockItemLevel>



Change the stock level of a list of stock items by the provided value

Parameters

NameTypeDescription
stockLevelsList<StockLevelUpdate>The new stock items levels to adjust
changeSourceString

Permissions

GlobalPermissions.Inventory.Stock.StockWrite.ChangeStockLevelsNode

Example Request

The following request format is required for this method.

Endpoint URL

GET | POST https://eu-ext.linnworks.net/api/Stock/UpdateStockLevelsBySKU

Headers

Connection: keep-alive
Accept: application/json
Content-Type: application/x-www-form-urlencoded; charset=UTF-8
Accept-Encoding: gzip, deflate
Authorization: INSERT_YOUR_TOKEN_HERE

Request Body

This is an example of the request structure. Results will vary depending on your data.

stockLevels=[
  {
    "SKU": "sample string 1",
    "LocationId": "718de1be-1d44-4245-9f90-3cea9fcebc22",
    "Level": 3
  }
]&changeSource=sample string 1

Response

This is an example of the response JSON. Results will vary depending on your data.

[
  {
    "Location": {
      "StockLocationId": "6aa0df43-6941-4a13-8f1f-3fcf2d87c0e2",
      "StockLocationIntId": 2,
      "LocationName": "sample string 3",
      "IsFulfillmentCenter": true,
      "LocationTag": "sample string 5",
      "BinRack": "sample string 6",
      "IsWarehouseManaged": true
    },
    "StockLevel": 1,
    "StockValue": 2.1,
    "MinimumLevel": 3,
    "InOrderBook": 4,
    "Due": 5,
    "JIT": true,
    "InOrders": 4,
    "Available": -3,
    "UnitCost": 2.1,
    "SKU": "sample string 7",
    "AutoAdjust": true,
    "LastUpdateDate": "2023-01-10T13:49:55.1064454+00:00",
    "LastUpdateOperation": "sample string 10",
    "rowid": "1b5e27f6-8dca-4b35-b6c1-0c07cf7993aa",
    "PendingUpdate": true,
    "StockItemPurchasePrice": 13.1,
    "StockItemId": "8796bd3e-4811-46b6-a133-54277ffa527b",
    "StockItemIntId": 15
  }
]