0

使用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",
});

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

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

4

1 回答 1

2

您将添加这样的团队:

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

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

于 2019-02-20T17:14:35.977 回答