Update Task
update_taskUpdate any combination of a task's fields — title, priority, status, sprint, assignees, or description. Omitted fields stay unchanged; set sprint_id to null to remove the task from its sprint.
Instructions
Update one or more of a task's fields and return the updated task; fields you omit are left unchanged (idempotent — re-sending the same values is a no-op). Pass sprint_id: null to remove the task from its sprint. Resolve ids first — the task via get_task/list_tasks, and status/feature/insight/sprint/member ids via pm_meta and the list_* reads — never guess them. Only id is required.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes | Task id, from list_tasks or get_task. | |
| title | No | New title (optional; omitted fields stay unchanged). | |
| priority | No | New priority level, urgent highest (optional). | |
| sprint_id | No | Move into a sprint, or null to remove (optional; resolve via list_sprints). | |
| status_id | No | New status; resolve the id via pm_meta (optional). | |
| feature_id | No | Feature id to link on the spine, from pm_meta or list_features (optional). | |
| insight_id | No | Insight id to link on the spine, from list_insights (optional). | |
| description | No | New body / details (optional). | |
| assignee_member_ids | No | Member ids to assign, from pm_meta (optional). |