ado_workitems_create
Create a new Azure DevOps work item by specifying project, type, and fields, returning the created item with its ID.
Instructions
Create a new work item in Azure DevOps. Specify the project, type (Bug, Task, User Story, Epic, Feature, etc.), and fields. Returns the created work item with its ID. Requires vso.work_write PAT scope.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| tags | No | Semicolon-separated tags | |
| type | Yes | Work item type: Bug, Task, User Story, Epic, Feature, Issue, etc. | |
| title | Yes | Work item title | |
| project | Yes | Project to create the work item in | |
| areaPath | No | Area path, e.g. 'ProjectName\\Team' | |
| priority | No | Priority: 1 (Critical) to 4 (Low) | |
| assignedTo | No | Display name or email of the assignee | |
| description | No | HTML or plain text description | |
| iterationPath | No | Iteration path, e.g. 'ProjectName\\Sprint 1' | |
| additionalFields | No | Additional fields as key-value pairs. Keys should be field reference names like 'System.State' or 'Microsoft.VSTS.Common.Priority'. |