get_work_item
Retrieve Azure DevOps work items by ID to access project details, with optional field expansion for comprehensive information retrieval.
Instructions
Gets a work item by its ID with optional field expansion.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
expand | No | The expand option for the work item. Use 'All' to get all fields. | |
work_item_id | Yes | The ID of the work item. |
Input Schema (JSON Schema)
{
"properties": {
"expand": {
"description": "The expand option for the work item. Use 'All' to get all fields.",
"type": "string"
},
"work_item_id": {
"description": "The ID of the work item.",
"type": "integer"
}
},
"required": [
"work_item_id"
],
"type": "object"
}