Update Task
update_taskUpdate an existing task by id (from list_tasks). Pass only the fields you want to change: name, description, due_date, priority ('H'|'M'|'L'), assignee, done (true once completed), column_id (to reassign), sort. To move a card between columns while setting its order, move_task is the dedicated tool.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes | ||
| done | No | Whether the task is completed (checked off). | |
| name | No | ||
| sort | No | ||
| author | No | Author tag, defaults to ai:claude. | |
| assignee | No | ||
| board_id | Yes | ||
| due_date | No | ISO 8601 date. | |
| priority | No | ||
| column_id | No | ||
| access_key | No | 8-character lowercase alphanumeric board access key when the board is locked (legacy 6-character lowercase alphanumeric keys are also accepted). Equivalent to setting the `X-Board-Key` HTTP header on the JSON-RPC POST. Omit for unlocked boards. Obtain via POST /api/boards/<id>/lock. | |
| description | No |