List customers
swell_list_customersList customers. In Swell, customers are the accounts model — this queries GET /accounts, with filtering, sorting, search, and expansion.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| page | No | Page number for pagination (default 1). | |
| sort | No | Sort expression, e.g. "date_created desc" or "name asc". | |
| limit | No | Max records to return (1–1000, Swell default 15). | |
| where | No | MongoDB-style filter as a JSON object string, e.g. {"active":true,"price":{"$gte":10}}. | |
| expand | No | Comma-separated related fields to expand, e.g. "variants,categories". | |
| search | No | Free-text search across the model's searchable fields. |