azdo_create_work_item
Create Azure DevOps work items with details like title, type, assignee, priority, and acceptance criteria to track tasks and bugs in projects.
Instructions
Create work item
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| acceptance_criteria | No | Acceptance criteria | |
| activity | No | Activity type (Development, Testing, Documentation, etc.) | |
| area_path | No | Area path (e.g., "MyProject\\Team1") | |
| assigned_to | No | User to assign the work item to (email or display name) | |
| board_column | No | Board column to place the work item in | |
| board_row | No | Board row/swimlane to place the work item in | |
| description | No | Work item description (Basic HTML supported) | |
| effort | No | Effort estimate in hours | |
| fields | No | Optional extra fields as JSON string (for custom fields) | |
| iteration_path | No | Iteration path (e.g., "MyProject\\Sprint 1"), use azdo_get_team_current_iteration to get the current iteration | |
| organization | Yes | AzDO org name | |
| parent_id | No | ID of parent work item | |
| priority | No | Priority (1-4, where 1 is highest) | |
| project | Yes | AzDO project name | |
| remaining_work | No | Remaining work in hours | |
| repro_steps | No | Reproduction steps | |
| severity | No | Severity for bugs (Critical, High, Medium, Low) | |
| start_date | No | Start date (YYYY-MM-DD) | |
| state | No | Initial state (New, Active, Resolved, etc.) | |
| story_points | No | Story points for estimation | |
| tags | No | Comma-separated tags | |
| target_date | No | Target/due date (YYYY-MM-DD) | |
| title | Yes | Work item title | |
| work_item_type | Yes | Type of work item (User Story, Epic, Feature, etc.) |