list_customers
Retrieve customer lists with optional date filters and cursor pagination. Use since_id to get the next page when more results are available.
Instructions
List customers with optional filters. Returns paginated results via since_id cursor. If has_more=true, call again with next_since_id.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | Max results per page (default 50, max 250). | |
| since_id | No | Return customers with ID greater than this value (cursor pagination). | |
| created_on_max | No | Filter by created date max (ISO 8601). | |
| created_on_min | No | Filter by created date min (ISO 8601). | |
| modified_on_max | No | Filter by modified date max (ISO 8601). | |
| modified_on_min | No | Filter by modified date min (ISO 8601). |