使用 Microsoft.Graph dotnet SDK 创建团队

Creating Team with Microsoft.Graph dotnet SDK

msgraph-sdk-dotnet我创建统一组。

var newGroup = await graphClient.Groups.Request().AddAsync(new Group
{
    GroupTypes = new List<string> { "Unified" },
    DisplayName = name,
    Description = description,
    MailEnabled = true,
    SecurityEnabled = false,
    Visibility = "Private",
});

接下来我想给它添加一个团队。文档向我提供了对 create a team (PUT /groups/{id}/team) 的 HTTP 请求,但我宁愿继续使用静态类型的 SDK。

使用 SDK 创建团队的最简单方法是什么?

您将像这样添加一个团队:

graphClient.Groups[groupPage[8].Id].Team.Request().PutAsync(team)

这将在下一个版本中提供。 https://github.com/microsoftgraph/msgraph-sdk-dotnet/pull/352