get_work_item_transitions
Retrieve valid state transitions for Azure DevOps work items to ensure proper workflow progression from a specific state.
Instructions
Get valid state transitions for a work item type from a specific state to ensure proper workflow.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
from_state | Yes | The current state to get valid transitions from. | |
project | Yes | The name or ID of the project. | |
work_item_type | Yes | The work item type (e.g., 'Bug', 'User Story', 'Task'). |
Input Schema (JSON Schema)
{
"properties": {
"from_state": {
"description": "The current state to get valid transitions from.",
"type": "string"
},
"project": {
"description": "The name or ID of the project.",
"type": "string"
},
"work_item_type": {
"description": "The work item type (e.g., 'Bug', 'User Story', 'Task').",
"type": "string"
}
},
"required": [
"project",
"work_item_type",
"from_state"
],
"type": "object"
}