fakestore_delete_cart
Remove a shopping cart from the Fake Store API simulation by specifying its ID. This action clears cart data for testing and demo purposes without persisting changes.
Instructions
Delete a cart (simulation - does not persist)
Input Schema
Name | Required | Description | Default |
---|---|---|---|
id | Yes | Cart ID to delete |
Input Schema (JSON Schema)
{
"properties": {
"id": {
"description": "Cart ID to delete",
"type": "number"
}
},
"required": [
"id"
],
"type": "object"
}