---
title: "Retrieves a paginated list of inventory/product items configured in the account, used as line items on invoices, bills, and estimates."
method: GET
path: "/api/Inventory"
tags: ["Inventory"]
---

# Retrieves a paginated list of inventory/product items configured in the account, used as line items on invoices, bills, and estimates.

`GET /api/Inventory`

## Query parameters

- `UpdatedAfter` string, date-time
- `pageSize` integer
- `pageNumber` integer

## Response `200`

Returns a paginated list of inventory/product items.

- InventoryList — Paginated collection of inventory/product items.
  - `TotalCount` integer — Total number of records matching the query across all pages.
  - `PageNumber` integer — The current page number (1-based).
  - `PageSize` integer — The number of records per page.
  - `Inventory` InventoryItem[] — The list of inventory items for this page.
    - `InventoryItemID` integer — Unique identifier for the inventory/product item.
    - `Name` string — Name of the inventory item.
    - `Description` string — Detailed description of the item.
    - `SKU` string — Stock Keeping Unit code.
    - `CostPrice` number, double — The cost/purchase price of the item.
    - `SalePrice` number, double — The default sale price of the item.
    - `SaleTaxIDFK` integer — The default tax rate ID applied when selling this item.
    - `isHidden` boolean — Whether this item is hidden from selection in the UI.
    - `DateCreated` string, date-time — Date the item was created.
    - `DateUpdated` string, date-time — Date the item was last updated.

## Other responses

- `401` — Unauthorized

---

[API](https://skmtc.net/avaza/apis/avaza-api-documentation.md) · [All operations](https://skmtc.net/avaza/apis/avaza-api-documentation/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/avaza/avaza-api-documentation/versions/1eeadf750514/schema)
