delete_work_item
Remove a specific work item from Azure DevOps by providing its unique ID to clean up project data and maintain organized workflows.
Instructions
Deletes a work item by its ID.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
work_item_id | Yes | The ID of the work item to delete. |
Input Schema (JSON Schema)
{
"properties": {
"work_item_id": {
"description": "The ID of the work item to delete.",
"type": "integer"
}
},
"required": [
"work_item_id"
],
"type": "object"
}