create_ingredient
Add new ingredients or products to Inflow inventory system by providing product details like name, SKU, and description for inventory management.
Instructions
Create a new ingredient/product in Inflow inventory
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| additionalFields | No | Any additional product fields | |
| description | No | Product description | |
| isActive | No | Active status (default: true) | |
| name | Yes | Product name | |
| productId | Yes | UUID for the new product (generate with crypto.randomUUID()) | |
| sku | No | SKU code |
Input Schema (JSON Schema)
{
"properties": {
"additionalFields": {
"additionalProperties": {},
"description": "Any additional product fields",
"type": "object"
},
"description": {
"description": "Product description",
"type": "string"
},
"isActive": {
"description": "Active status (default: true)",
"type": "boolean"
},
"name": {
"description": "Product name",
"type": "string"
},
"productId": {
"description": "UUID for the new product (generate with crypto.randomUUID())",
"type": "string"
},
"sku": {
"description": "SKU code",
"type": "string"
}
},
"required": [
"productId",
"name"
],
"type": "object"
}