get_ingredient
Retrieve detailed ingredient and product information including inventory data and images using product ID from the Inflow Inventory system.
Instructions
Get detailed information about a specific ingredient/product
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| include | No | Related entities to include (e.g., "inventoryLines,defaultImage") | |
| productId | Yes | The product ID (UUID) |
Input Schema (JSON Schema)
{
"properties": {
"include": {
"description": "Related entities to include (e.g., \"inventoryLines,defaultImage\")",
"type": "string"
},
"productId": {
"description": "The product ID (UUID)",
"type": "string"
}
},
"required": [
"productId"
],
"type": "object"
}