todoist_completed_tasks_get
Retrieve completed tasks from Todoist with optional filters for project, date range, and pagination.
Instructions
Retrieve completed tasks from Todoist. Uses the Sync API to fetch tasks that have been marked as complete. Supports filtering by project, date range, and pagination.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| project_id | No | Filter completed tasks by project ID (optional) | |
| since | No | Return tasks completed after this date/time. ISO 8601 format, e.g., '2024-01-01T00:00:00' (optional) | |
| until | No | Return tasks completed before or on this date/time. ISO 8601 format, e.g., '2024-01-31T23:59:59' (optional) | |
| limit | No | Maximum number of completed tasks to return (default: 30, max: 200) | |
| offset | No | Number of tasks to skip for pagination (optional) | |
| annotate_notes | No | Include notes/comments with completed tasks (optional) |