get_work_item_templates
Retrieve a list of work item templates for a team in Azure DevOps. Filter templates by work item type and obtain template IDs or details for creating tasks, bugs, or other items.
Instructions
Gets a list of all work item templates for a team.
Use this tool when you need to:
- Find available templates for creating work items
- Get template IDs for use in other operations
- Filter templates by work item type
Args:
team_context: Dictionary containing team information with keys:
project: Project name (Optional if project_id is provided)
project_id: Project ID (Optional if project is provided)
team: Team name (Optional if team_id is provided)
team_id: Team ID (Optional if team is provided)
work_item_type: Optional work item type name to filter templates
Returns:
A formatted table of all templates with names, work item types,
and descriptions
Input Schema
Name | Required | Description | Default |
---|---|---|---|
team_context | Yes | ||
work_item_type | Yes |
Input Schema (JSON Schema)
{
"properties": {
"team_context": {
"title": "Team Context",
"type": "object"
},
"work_item_type": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"title": "Work Item Type"
}
},
"required": [
"team_context",
"work_item_type"
],
"title": "get_work_item_templatesArguments",
"type": "object"
}