get_catalog_items
Retrieve detailed information for multiple catalog items by providing their IDs through the Turbify Store Catalog API.
Instructions
Get details for multiple catalog items.
Args:
item_ids: List of item IDs to retrieve
Returns:
JSON string with item details
Input Schema
Name | Required | Description | Default |
---|---|---|---|
item_ids | Yes |
Input Schema (JSON Schema)
{
"properties": {
"item_ids": {
"items": {
"type": "string"
},
"title": "Item Ids",
"type": "array"
}
},
"required": [
"item_ids"
],
"type": "object"
}