Forrest logo
back to the az tool

az-devops:tldr:1e433

az-devops: List members of a specific team working on a particular project.
$ az devops team list-member --project ${project_name} --team ${team_name}
try on your machine

The command "az devops team list-member" is used to list the members of a specific team in Azure DevOps. Here is an explanation of the different parameters used in the command:

  • "az": It is the command-line interface (CLI) for Azure. It provides a set of commands to interact with Azure resources.

  • "devops": It is a command group within the Azure CLI that is used for operations related to Azure DevOps.

  • "team list-member": It is a specific command within the "az devops" command group which is used to list the members of a team.

  • "--project ${project_name}": This parameter specifies the name or ID of the Azure DevOps project where the team is located. Replace "${project_name}" with the actual name or ID of the project.

  • "--team ${team_name}": This parameter specifies the name or ID of the team for which you want to list the members. Replace "${team_name}" with the actual name or ID of the team.

This explanation was created by an AI. In most cases those are correct. But please always be careful and never run a command you are not sure if it is safe.
back to the az tool