create team
2 TopicsHow 'best' to create a new team - Best practice!
Hi everyone, I'm a little confused about the 'best' way of starting a new Team, and whether such a thing exists. I currently run a 'community' as a Team, and when I set it up, I just went through the Teams app and created a new team from scratch. That meant manually adding all 400 members to it, as for some reason, it didn't sync through and create a 'Office 365 group this way. I'm now giving some guidance more broadly in our organisation about how to create a new Team, so it's got me thinking, what is the best way to do this? Are there benefits to creating it by first creating an office 365 group? Are there scenarios where you should definitely go that route first? Or is that something you can add on later. What advice would you give when simply saying to someone 'this is how you should go about creating a new team' as there doesn't seem to be a definitive answer. Thanks in advance 🙂2.6KViews0likes3CommentsMicrosoft Graph Api - Create team Visibility : HiddenMembership error
Hi. I've been create a team using this code in c#, using Microsoft Graph Api. var additionalData = new Dictionary<string, object>() { { "template@odata.bind", "https://graph.microsoft.com/beta/teamsTemplates('educationClass')" }, { "owners@odata.bind", new List<string>() } }; (additionalData["owners@odata.bind"] as List < string >).Add("https://graph.microsoft.com/v1.0/users/" + ownId); var team = new Team { DisplayName = displayName, Description = description, AdditionalData = additionalData }; await graphClient .Teams .Request() .AddAsync(team); But there was an error all of a sudden today. As follows Team Definition. Visibility' should be equal to 'HiddenMembership' So I set the Visibility option. Visibility = TeamVisibilityType.HiddenMembership But error occured like this.. Team Visibility must be one of known types: [Private,Public,HiddenMembership] There is also no information on 'HiddenMemberhip' in https://docs.microsoft.com/en-us/graph/api/resources/teamvisibilitytype?view=graph-rest-beta The Visual studio nuget manager also upgraded to the latest beta version. License is Education A1. I don't know what's going on here. Any way is fine, so please help me.. Thanks7.1KViews3likes13Comments