get_product
Retrieve detailed product information by specifying the product ID to efficiently manage and analyze CS-Cart store inventory and listings.
Instructions
Get detailed information about a specific product
Input Schema
Name | Required | Description | Default |
---|---|---|---|
product_id | Yes | Product ID |
Input Schema (JSON Schema)
{
"properties": {
"product_id": {
"description": "Product ID",
"type": "number"
}
},
"required": [
"product_id"
],
"type": "object"
}