fakestore_get_cart
Retrieve specific shopping cart details by ID to view items, quantities, and totals for e-commerce testing and data management.
Instructions
Get a single cart by its ID
Input Schema
Name | Required | Description | Default |
---|---|---|---|
id | Yes | Cart ID |
Input Schema (JSON Schema)
{
"properties": {
"id": {
"description": "Cart ID",
"type": "number"
}
},
"required": [
"id"
],
"type": "object"
}