update_items
Modify catalog items in Turbify Merchant Solutions by providing item IDs and updated values. HTML content must be wrapped in CDATA tags, while TableId and Id fields remain unchanged.
Instructions
Update items in Turbify Merchant Solutions catalog using the Catalog API. TableId and Id cannot be updated.
HTML included in the request values must be contained within CDATA tags.
Args:
items: List of item dictionaries to update. Each item must have:
- id (str): Unique item ID, this cannot be updated
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"
}