delete_product
Remove products from your CS-Cart store by specifying the product ID. This tool simplifies product management, ensuring accurate inventory updates and store optimization.
Instructions
Delete a product from the store
Input Schema
Name | Required | Description | Default |
---|---|---|---|
product_id | Yes | Product ID to delete |
Input Schema (JSON Schema)
{
"properties": {
"product_id": {
"description": "Product ID to delete",
"type": "number"
}
},
"required": [
"product_id"
],
"type": "object"
}