List Products
logiwa_list_productsList products (SKUs) from the Logiwa WMS catalog with pagination. Use page and page_size parameters to browse through inventory records; returns product IDs, SKUs, names, stock, and packaging details.
Instructions
List products (SKUs) in the Logiwa catalog, paginated.
Logiwa list endpoints paginate by page index only — there is no server-side text filter, so page through results to find a SKU, or use logiwa_get_product when you already know the product identifier.
Args:
page (number): 1-based page number (default 1)
page_size (number): records per page, 1-200 (default 20)
response_format ('markdown' | 'json'): output format (default markdown)
Returns: { title, page, page_size, count, total_count, has_more, next_page, items[] }. Each item includes the product identifier (UUID), sku, name, stock and packaging info.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| page | No | 1-based page number to fetch (Logiwa paginates by page index). | |
| page_size | No | Number of records per page (1-200, default 20). | |
| response_format | No | Output format: 'markdown' for a human-readable summary (default) or 'json' for the full structured payload. | markdown |