List inventory items
/v1/inventory_items Scope: inventory:readReturns inventory items for the restaurant.
Query parameters
limitintegerOptionalPage size.
starting_afterstringOptionalCursor.
categorystringOptionalFilter by free-form category.
low_stockbooleanOptionaltrue returns only items at or below min_stock.
is_activebooleanOptionalfalse includes soft-deleted items.
Request
curl 'https://api.tablezio.com/v1/inventory_items?low_stock=true' -H 'X-API-Key: tbz_…'Response
{ "object": "list", "data": [ /* inventory_item */ ], "has_more": false, "next_cursor": null, "previous_cursor": null, "url": "/v1/inventory_items" }