fakestore_update_product
Update product details including title, price, description, image, and category in a simulated e-commerce environment for testing and development purposes.
Instructions
Update an existing product (simulation - does not persist)
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| category | No | New product category | |
| description | No | New product description | |
| id | Yes | Product ID to update | |
| image | No | New product image URL | |
| price | No | New product price | |
| title | No | New product title |
Input Schema (JSON Schema)
{
"properties": {
"category": {
"description": "New product category",
"type": "string"
},
"description": {
"description": "New product description",
"type": "string"
},
"id": {
"description": "Product ID to update",
"type": "number"
},
"image": {
"description": "New product image URL",
"type": "string"
},
"price": {
"description": "New product price",
"type": "number"
},
"title": {
"description": "New product title",
"type": "string"
}
},
"required": [
"id"
],
"type": "object"
}