Inventory levels

Inventory levels are a critical component of inventory management, representing the available quantity of an item at a specific location. Understanding and managing these levels ensures that an organization maintains optimal stock at each location, avoiding overstock or stockouts. Each inventory level is associated with a distinct inventory item and location, providing a detailed view of inventory status across different sites. This resource will guide you through the key concepts, management practices, and strategies for effectively overseeing inventory levels.

Returns a list of inventory levels

get

Get all Inventory levels.

Query parameters
inventoryItemIdsstring[]Required

Only return inventory levels for these inventory items.

shipToCountrystringOptional

Only return inventory levels for locations that ship to this country.

availablebooleanOptional

Only return available (i.e. greater than zero) inventory levels.

Responses
200
200 OK
application/json
get
GET /inventory-levels HTTP/1.1
Host: api.digitalriver.com
Accept: */*
{
  "data": [
    {
      "locationId": "afe95639-8181-4b66-86a6-1a9493d5419d",
      "inventoryItemId": "ce4ce2de-530c-4da2-bf8a-f0f8cf059095",
      "available": true,
      "availableQuantity": 6,
      "availableTime": "2018-04-25T20:36:00Z",
      "liveMode": false,
      "updatedTime": "2018-04-25T20:36:00Z"
    }
  ]
}

Last updated