Azure Devops -----Can someone write a function that can Verify a team in the organization exists or not by querying the team name--Return true for existing, Return false for not existing (Bash, or AzureCLI)
AzureOrganization="https://dev.azure.com/ExampleOrganization"
AzureProject="ExampleProject"
az devops configure -d organization= $AzureOrganization project=$AzureProject
Azure Devops -----Can someone also write a function that can Verify an iteration in the organization exists or not by querying the iteration name or iteration path--Return true for existing, Return false for not existing (Bash, or AzureCLI)