get_team_area_paths
Retrieve area paths assigned to a specific team in Azure DevOps. Helps identify team responsibilities, default path assignments, and configure boards and backlogs for accurate work item routing and classification.
Instructions
Retrieves the area paths assigned to a specific team.
Use this tool when you need to:
- Understand a team's areas of responsibility
- Check default area path assignments
- Determine how work is classified and routed to teams
- Set up board and backlog configurations
IMPORTANT: Area paths in Azure DevOps determine which work items appear
on a team's backlogs and boards. The default area path is used when
creating new work items through a team's interface.
Args:
project_name_or_id: The name or ID of the team project
team_name_or_id: The name or ID of the team
Returns:
Formatted string containing team area path information including
the default area path and all assigned paths, with indicators for
paths that include sub-areas
Input Schema
Name | Required | Description | Default |
---|---|---|---|
project_name_or_id | Yes | ||
team_name_or_id | Yes |
Input Schema (JSON Schema)
{
"properties": {
"project_name_or_id": {
"title": "Project Name Or Id",
"type": "string"
},
"team_name_or_id": {
"title": "Team Name Or Id",
"type": "string"
}
},
"required": [
"project_name_or_id",
"team_name_or_id"
],
"title": "get_team_area_pathsArguments",
"type": "object"
}