fakestore_delete_product
Remove products from the Fake Store API by specifying product ID. This simulation tool helps manage e-commerce test data without persistent changes.
Instructions
Delete a product (simulation - does not persist)
Input Schema
Name | Required | Description | Default |
---|---|---|---|
id | Yes | Product ID to delete |
Input Schema (JSON Schema)
{
"properties": {
"id": {
"description": "Product ID to delete",
"type": "number"
}
},
"required": [
"id"
],
"type": "object"
}