get_customers
Retrieve customer data from TimeChimp with pagination, filtering, and sorting options to manage client information effectively.
Instructions
Retrieve all customers from TimeChimp
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| top | No | Maximum number of customers to return (1-10000, default: 100) | |
| skip | No | Number of customers to skip for pagination (default: 0) | |
| count | No | Whether to include the total count of results (default: true) | |
| expand | No | Comma-delimited list of properties to expand (e.g., "contacts,projects") | |
| active_only | No | Only return active customers (default: false) | |
| filter | No | OData filter expression (e.g., "name eq 'Company Name'" or "active eq true") | |
| orderby | No | OData orderby expression (e.g., "name asc" or "created desc") |