core_list_project_teams
Retrieve a list of teams for a specific Azure DevOps project, with options to filter by user membership, paginate results, and limit the number of teams returned.
Instructions
Retrieve a list of teams for the specified Azure DevOps project.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
mine | No | If true, only return teams that the authenticated user is a member of. | |
project | Yes | The name or ID of the Azure DevOps project. | |
skip | No | The number of teams to skip for pagination. Defaults to 0. | |
top | No | The maximum number of teams to return. Defaults to 100. |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"mine": {
"description": "If true, only return teams that the authenticated user is a member of.",
"type": "boolean"
},
"project": {
"description": "The name or ID of the Azure DevOps project.",
"type": "string"
},
"skip": {
"description": "The number of teams to skip for pagination. Defaults to 0.",
"type": "number"
},
"top": {
"description": "The maximum number of teams to return. Defaults to 100.",
"type": "number"
}
},
"required": [
"project"
],
"type": "object"
}