Skip to main content
GET
/
inventory
/
stocks
/
list
List Stocks
curl --request GET \
  --url https://api.decodahealth.com/inventory/stocks/list \
  --header 'API-KEY: <api-key>' \
  --header 'TENANT: <tenant>'
{
  "data": [
    {
      "name": "<string>",
      "unit": "AMPOULES",
      "id": "<string>",
      "description": "<string>",
      "notes": "<string>",
      "category": "<string>",
      "isArchived": false,
      "shipments": [
        {
          "stockId": "<string>",
          "supplierId": "<string>",
          "locationId": "<string>",
          "quantity": 123,
          "remainingQuantity": 123,
          "locationName": "<string>",
          "id": "<string>",
          "lotNumber": "<string>",
          "expiryDate": "2023-11-07T05:31:56Z",
          "sku": "<string>",
          "cost": 123,
          "supplier": {
            "name": "<string>",
            "id": "<string>",
            "description": "<string>",
            "website": "<string>",
            "email": "<string>",
            "preferredContactMethod": "<string>",
            "phoneNumber": "<string>",
            "addressLineOne": "<string>",
            "addressLineTwo": "<string>",
            "city": "<string>",
            "state": "<string>",
            "zipCode": "<string>",
            "country": "<string>",
            "isArchived": false
          },
          "createdDate": "2023-11-07T05:31:56Z",
          "note": "<string>"
        }
      ],
      "items": [
        {
          "itemId": "<string>",
          "stockId": "<string>",
          "quantityUsed": 123
        }
      ],
      "locationSummaries": [
        {
          "locationId": "<string>",
          "locationName": "<string>",
          "totalQuantity": 123,
          "remainingQuantity": 123,
          "percentage": 123
        }
      ],
      "note": "<string>"
    }
  ],
  "total": 123
}

Headers

TENANT
string
required

The tenant you are making this request on behalf of

API-KEY
string
required

Your api key

Query Parameters

page
integer | null
per_page
integer | null
sort_by
string | null
sort_direction
enum<string> | null
Available options:
asc,
desc
location_id
string | null

Optional ID of the location to filter shipments by

name
string | null

Optional name of the stock

ids
string[] | null

Optional IDs of the stock

item_id
string | null

Optional ID of the item

category
string | null

Optional category name to filter by (references category.name)

remaining_quantity
number[] | null

Optional remaining quantity of the stock

unit
enum<string> | null

Optional unit of measurement

Available options:
AMPOULES,
APPLICATORS,
BOTTLES,
BOXES,
CAPSULES,
CUPS,
DOSES,
G_PER_ML,
GRAMS,
IU,
IU_PER_ML,
OUNCES,
FLUID_OUNCES,
KG,
KITS,
LITERS,
MCG,
MG,
MG_PER_ML,
ML,
MMOL,
MICROGRAM_PER_ML,
PACKS,
PAIRS,
PATCHES,
PERCENTAGE,
PIECES,
POUCHES,
ROLLS,
SACHETS,
SHEETS,
SPRAYS,
STRIPS,
SYRINGES,
TABLETS,
TABLETS_PER_DAY,
TESTS,
TUBES,
UNITS,
VIALS,
TREATMENTS,
SESSIONS,
PULSES,
JOULES,
CENTIMETERS,
THREAD_COUNT,
INJECTIONS,
WRINKLE_UNITS,
POUNDS,
FEET,
INCHES
is_archived
boolean | null

Optional filter for archived status

Response

Successful Response

data
StockDetail · object[]
required
total
integer
required