使用Microsoft.Graph dotnet SDK创建团队

时间:2019-02-20 14:51:42

标签: microsoft-graph microsoft-teams microsoft-graph-sdks

使用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 teamPUT /groups/{id}/team)的HTTP请求,但是我还是希望继续使用静态类型的SDK。

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

1 个答案:

答案 0 :(得分:2)

您将添加这样的团队:

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

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