list_customer_orders
Retrieve all orders placed by a specific customer, with pagination support via since_id cursor for handling large order histories.
Instructions
List all orders placed by a specific customer. Returns paginated results via since_id cursor.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | Max results per page (default 50, max 250). | |
| since_id | No | Return orders with ID greater than this value (cursor pagination). | |
| customer_id | Yes | Customer ID whose orders to list. Required. |