Add Product
add_productCreates a new product in an e-commerce catalog by specifying SKU, name, price, quantity, and an optional description for inventory management.
Instructions
Create a new product with sku, name, description(optional but better to have), price, and quantity.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| sku | Yes | ||
| name | Yes | ||
| price | Yes | ||
| quantity | Yes | ||
| description | No |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| id | No | ||
| sku | Yes | ||
| name | Yes | ||
| price | Yes | ||
| quantity | Yes | ||
| created_at | No | ||
| updated_at | No | ||
| description | No |