list_ingredients
Search and filter ingredients in Inflow inventory by name, description, barcode, or active status to manage product data and stock operations.
Instructions
List all ingredients/products in Inflow inventory with optional filters
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| barcode | No | Filter by barcode | |
| description | No | Filter by description | |
| include | No | Related entities to include (e.g., "inventoryLines,defaultImage") | |
| isActive | No | Filter by active status | |
| limit | No | Maximum number of results (default: 50) | |
| name | No | Filter by product name | |
| smart | No | Full-text search across name, description, SKU, barcode |
Input Schema (JSON Schema)
{
"properties": {
"barcode": {
"description": "Filter by barcode",
"type": "string"
},
"description": {
"description": "Filter by description",
"type": "string"
},
"include": {
"description": "Related entities to include (e.g., \"inventoryLines,defaultImage\")",
"type": "string"
},
"isActive": {
"description": "Filter by active status",
"type": "boolean"
},
"limit": {
"description": "Maximum number of results (default: 50)",
"type": "number"
},
"name": {
"description": "Filter by product name",
"type": "string"
},
"smart": {
"description": "Full-text search across name, description, SKU, barcode",
"type": "string"
}
},
"type": "object"
}