Update a work item
update_work_itemUpdate a work item by ID, modifying only specified fields such as title, priority, state, assignees, labels, dates, estimate, or draft status. Pass null to clear cycle or date fields.
Instructions
Update a work item by id. Only the fields you pass are changed. Pass cycle_id: null to remove it from its cycle.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| work_item_id | Yes | Work item id | |
| title | No | Work item title | |
| description | No | Plain-text description (empty string clears it) | |
| priority | No | Priority of the work item | |
| state_id | No | State id — must belong to the item's project | |
| parent_id | No | Parent work item id — same project | |
| cycle_id | No | Cycle id (same project), or null to remove the item from its cycle | |
| assignee_ids | No | User ids to assign; must be members of the workspace | |
| label_ids | No | Label ids to apply; must belong to the item's project | |
| start_date | No | ISO 8601 date (YYYY-MM-DD), or null to clear | |
| target_date | No | ISO 8601 date (YYYY-MM-DD), or null to clear | |
| estimate_point | No | Estimate points, or null to clear | |
| draft | No | Whether the item is a draft |