update_task
Update a task's status, title, description, priority, or team assignment. Use this to move tasks through the workflow (todo -> in_progress -> done) or reassign to a team.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| tags | No | New tags (replaces existing tags) | |
| title | No | New title | |
| due_at | No | Due date in ISO 8601 format (e.g. '2026-03-15T00:00:00Z'), or null to clear | |
| status | No | New status: todo, in_progress, done, cancelled | |
| task_id | Yes | Task ID to update | |
| team_id | No | Team ID to assign (optional) | |
| priority | No | New priority: low, medium, high, urgent | |
| team_name | No | Team name to assign (optional, alternative to team_id) | |
| description | No | New description |