delete_items
Remove multiple catalog items simultaneously by specifying their IDs. This tool allows bulk deletion operations for managing your store inventory efficiently.
Instructions
Delete multiple items in a single operation.
Args:
item_ids: List of item IDs to delete
Returns:
JSON string with operation result
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"
}