get_work_item
Retrieve detailed information about a specific work item in Azure DevOps by providing the project name and work item ID.
Instructions
Get details of a specific work item
Input Schema
Name | Required | Description | Default |
---|---|---|---|
id | Yes | ID of the work item | |
project | Yes | Name of the Azure DevOps project |
Input Schema (JSON Schema)
{
"properties": {
"id": {
"description": "ID of the work item",
"type": "number"
},
"project": {
"description": "Name of the Azure DevOps project",
"type": "string"
}
},
"required": [
"project",
"id"
],
"type": "object"
}