get_work_item
Retrieve detailed information for a specific work item in Azure DevOps by providing its ID, enabling efficient tracking and management of project tasks.
Instructions
Get details of a specific work item
Input Schema
Name | Required | Description | Default |
---|---|---|---|
expand | No | The level of detail to include in the response. Defaults to "all" if not specified. | |
workItemId | Yes | The ID of the work item |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"expand": {
"description": "The level of detail to include in the response. Defaults to \"all\" if not specified.",
"enum": [
0,
1,
2,
3,
4
],
"type": "number"
},
"workItemId": {
"description": "The ID of the work item",
"type": "number"
}
},
"required": [
"workItemId"
],
"type": "object"
}