list_tasks
Retrieve CRM tasks from ChartMogul with filters for customer, assignee, due dates, and completion status. Manage task tracking and organization.
Instructions
[ChartMogul API] List CRM tasks. LIMIT WARNING: Default limit 20. Discourage requesting more than 20 items to avoid excessive token usage. Returns task objects with: uuid (string: task UUID), customer_uuid (string), task_details (string: max 255 chars), assignee (string: email), due_date (string: ISO 8601 date), completed_at (string: ISO 8601 date or null), created_at (string: ISO 8601 datetime). FILTERS: customer_uuid (string), assignee (string: email), due_date_on_or_after (ISO 8601 date), estimated_close_date_on_or_before (ISO 8601 date), completed (boolean: true/false). Response includes pagination. Example: assignee="[email protected]", completed=false
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| customer_uuid | No | ||
| assignee | No | ||
| due_date_on_or_after | No | ||
| estimated_close_date_on_or_before | No | ||
| completed | No | ||
| limit | No |