get_work_item_template
Retrieve detailed information about a specific work item template from Azure DevOps, including default field values and pre-populated data, to understand and utilize templates effectively.
Instructions
Gets detailed information about a specific work item template.
Use this tool when you need to:
- View default field values in a template
- Understand what a template pre-populates in a work item
- Get complete details about a template
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)
template_id: The ID of the template
Returns:
Detailed information about the template including default field
values
Input Schema
Name | Required | Description | Default |
---|---|---|---|
team_context | Yes | ||
template_id | Yes |
Input Schema (JSON Schema)
{
"properties": {
"team_context": {
"title": "Team Context",
"type": "object"
},
"template_id": {
"title": "Template Id",
"type": "string"
}
},
"required": [
"team_context",
"template_id"
],
"title": "get_work_item_templateArguments",
"type": "object"
}