create_items
Add new products to your Turbify Store catalog with required details like ID, name, price, and table assignment. Returns creation results with success status.
Instructions
Create items in Turbify Merchant Solutions catalog using the Catalog API.
HTML included in the request values must be contained within CDATA tags.
Args:
items: List of item dictionaries to create. Each item must have:
- id (str): Unique item ID
- name (str): Item name
- price (float): Item price
- orderable (bool): Whether item is orderable
- taxable (bool): Whether item is taxable
- table_id (str): Table ID where item belongs
- custom_data (list, optional): List of {"name": str, "value": str} custom attributes
Returns:
JSON string with creation results including success status and any error messages
Input Schema
Name | Required | Description | Default |
---|---|---|---|
items | Yes |
Input Schema (JSON Schema)
{
"properties": {
"items": {
"items": {
"$ref": "#/$defs/CatalogItem"
},
"title": "Items",
"type": "array"
}
},
"required": [
"items"
],
"type": "object"
}