fakestore_get_user_carts
Retrieve all shopping carts associated with a specific user ID to manage and analyze user purchase data in e-commerce systems.
Instructions
Get all carts belonging to a specific user
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| userId | Yes | User ID |
Input Schema (JSON Schema)
{
"properties": {
"userId": {
"description": "User ID",
"type": "number"
}
},
"required": [
"userId"
],
"type": "object"
}