get_invoices
Retrieve and filter invoices from TimeChimp with pagination, date ranges, customer-specific queries, and custom OData filtering options.
Instructions
Retrieve all invoices from TimeChimp
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| top | No | Maximum number of invoices to return (1-10000, default: 100) | |
| skip | No | Number of invoices 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., "customer,projects") | |
| customer_id | No | Filter by specific customer ID | |
| from_date | No | Start date for filtering (YYYY-MM-DD format) | |
| to_date | No | End date for filtering (YYYY-MM-DD format) | |
| filter | No | OData filter expression (e.g., "status eq 'sent'" or "total gt 1000") | |
| orderby | No | OData orderby expression (e.g., "invoiceDate desc" or "total desc") |