All endpoints require an
Authorization: Bearer <token> header.Endpoint
Request
No request parameters.Response
Returns an array of inventory objects. Each record includes the associated product via a JOIN (include: { product: true } in Prisma).
Inventory records include the associated product details fetched via a Prisma
include: { product: true } JOIN. You do not need to make a separate request to look up product information.Unique identifier for the inventory record (UUID).
UUID of the product this inventory record tracks.
Current stock quantity on hand.
Minimum stock threshold. Default is
10.Maximum stock threshold. Default is
1000.UUID of the tenant this inventory record belongs to.
ISO 8601 timestamp of when the record was created.
ISO 8601 timestamp of when the record was last updated.
The product linked to this inventory record.