get_tasks
Retrieve and filter tasks from TimeChimp with pagination, sorting, and project-specific queries to manage work tracking.
Instructions
Retrieve all tasks from TimeChimp
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| top | No | Maximum number of tasks to return (1-10000, default: 100) | |
| skip | No | Number of tasks 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., "project") | |
| active_only | No | Only return active tasks (default: false) | |
| project_id | No | Filter by specific project ID | |
| filter | No | OData filter expression (e.g., "name eq 'Task Name'" or "active eq true") | |
| orderby | No | OData orderby expression (e.g., "name asc" or "created desc") |