LogoLogo
System Status
2021-03-23
2021-03-23
  • 2021-03-23
  • Charges
  • Checkouts
  • Country specifications
  • Customers
  • Events
  • Fees
  • File links
  • Files
  • Fulfillment cancellations
  • Fulfillment orders
  • Fulfillment returns
  • Fulfillments
  • Inventory items
  • Inventory levels
  • Invoices
  • Orders
  • Payouts
  • Plans
  • Refunds
  • Reservations
  • Returns
  • Sales summaries
  • Sales transactions
  • Shipments
  • Shipping quotes
  • SKUs
  • SKU groups
  • Sources
  • Subscriptions
  • Tax identifiers
  • Webhooks
Powered by GitBook
On this page

Inventory levels

PreviousInventory itemsNextInvoices

Last updated 6 months ago

An inventory level represents the available quantity of an inventory item at a specific location. Each inventory level belongs to one inventory item and has one location.

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
400
400 Bad Request
application/json
401
401 Unauthorized
application/json
403
403 Forbidden
application/json
405
405 Method Not Allowed
application/json
406
406 Not Acceptable
application/json
408
408 Request Timeout
application/json
429
429 Too Many Requests
application/json
500
500 Internal Server Error
application/json
502
502 Bad Gateway Error
application/json
503
503 Service Unavailable Error
application/json
504
504 Gateway Timeout Error
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": "2025-05-09T05:24:42.378Z",
      "liveMode": false,
      "updatedTime": "2025-05-09T05:24:42.378Z"
    }
  ]
}