List my tasks
list_my_tasksList Tango tasks visible to the signed-in user, across every agency they belong to (global by default). Filter by status, role, client_id, or agency_id. Every row carries agency_id + agency_name so callers can scope deliberately rather than relying on active-agency state.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| mine | No | Only tasks assigned to you (as a human) or to one of your workers. | |
| role | No | ||
| sort | No | Result ordering. Defaults to updated_desc. due_asc puts the soonest deadline first. | |
| limit | No | ||
| since | No | ISO timestamp — only tasks created or updated after this. Use for cheap polling (or use check_in). | |
| status | No | ||
| overdue | No | Shortcut: unfinished tasks whose deadline has already passed. | |
| agency_id | No | Restrict to one agency. | |
| client_id | No | ||
| due_after | No | ISO timestamp — only tasks with a deadline at or after this. | |
| parent_id | No | Only subtasks of this parent task. | |
| due_before | No | ISO timestamp — only tasks with a deadline before this. Pass 'now' semantics by sending the current time to get overdue work. | |
| has_deadline | No | true = only tasks with a deadline, false = only tasks without one. | |
| unacknowledged | No | Only tasks nobody has acknowledged yet. | |
| context_changed | No | Only tasks whose client/project context was revised after they were assigned. |