wit_list_backlogs
Retrieve backlogs for specific projects and teams in Azure DevOps using PAT authentication. Streamline project tracking and task management for enhanced productivity.
Instructions
Revieve a list of backlogs for a given project and team.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
project | Yes | The name or ID of the Azure DevOps project. | |
team | Yes | The name or ID of the Azure DevOps team. |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"project": {
"description": "The name or ID of the Azure DevOps project.",
"type": "string"
},
"team": {
"description": "The name or ID of the Azure DevOps team.",
"type": "string"
}
},
"required": [
"project",
"team"
],
"type": "object"
}