list_work_items
Retrieve and filter work items in an Azure DevOps project by type, state, or assigned user to streamline project management and task tracking.
Instructions
List work items in a project
Input Schema
Name | Required | Description | Default |
---|---|---|---|
assignedTo | No | Filter by assigned user | |
project | Yes | Name of the Azure DevOps project | |
states | No | Filter by states | |
types | No | Filter by work item types |
Input Schema (JSON Schema)
{
"properties": {
"assignedTo": {
"description": "Filter by assigned user",
"type": "string"
},
"project": {
"description": "Name of the Azure DevOps project",
"type": "string"
},
"states": {
"description": "Filter by states",
"items": {
"type": "string"
},
"type": "array"
},
"types": {
"description": "Filter by work item types",
"items": {
"type": "string"
},
"type": "array"
}
},
"required": [
"project"
],
"type": "object"
}