get_work_item_states
Retrieve all valid states for a specific work item type in Azure DevOps to ensure accurate status tracking and updates.
Instructions
Get all possible states for a specific work item type to help with accurate status updates.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
project | Yes | The name or ID of the project. | |
work_item_type | Yes | The work item type to get states for (e.g., 'Bug', 'User Story', 'Task'). |
Input Schema (JSON Schema)
{
"properties": {
"project": {
"description": "The name or ID of the project.",
"type": "string"
},
"work_item_type": {
"description": "The work item type to get states for (e.g., 'Bug', 'User Story', 'Task').",
"type": "string"
}
},
"required": [
"project",
"work_item_type"
],
"type": "object"
}