update_work_item
Update fields of an existing Azure DevOps work item and add parent, child, or other relation links.
Instructions
Update an existing work item's fields and/or add relation links.
Args: project: Azure DevOps project name. Uses default if not specified. work_item_id: The ID of the work item to update. fields: Dict mapping field names to new values. Example: {"System.Title": "New Title", "System.State": "Active", "System.AssignedTo": "user@example.com"} add_links: List of relation links to add. Each dict must have: - target_id (int): ID of the work item to link to. - link_type (str): "parent", "child", "related", "predecessor", "successor", or a fully-qualified relation type. - comment (str, optional): Comment for the link. Example: [{"target_id": 100, "link_type": "parent"}]
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| project | No | ||
| work_item_id | No | ||
| fields | No | ||
| add_links | No |