如何使用 C# SDK 创建带有团队模板的团队?
How to create teams with team template by using C# SDK?
虽然 documentation explains how to create a team with a team template 使用原始 HTTP 请求,但我找不到使用 Graph SDK 的现成解决方案。
我能找到的最佳匹配是:
serviceClient.Teams.Request().AddAsync(new Team { Template = new TeamsTemplate { Id = "???", ODataType = "???" } });
但是插入像 standard
或 educationClass
这样的模板名称在上面给定的请求中的任何地方都不起作用。那么关于如何使用 SDK 形成请求的任何可用文档?
我正在使用此请求创建一个带有模板的团队:
await client.Teams.Request().AddAsync(
new Team
{
DisplayName = "My team",
Description = "desc",
AdditionalData = new Dictionary<string, object>()
{
{"template@odata.bind", "https://graph.microsoft.com/v1.0/teamsTemplates('standard')"}
}
});
如果您的方法不奏效,请检查此 thread 以获得解决方法。
虽然 documentation explains how to create a team with a team template 使用原始 HTTP 请求,但我找不到使用 Graph SDK 的现成解决方案。
我能找到的最佳匹配是:
serviceClient.Teams.Request().AddAsync(new Team { Template = new TeamsTemplate { Id = "???", ODataType = "???" } });
但是插入像 standard
或 educationClass
这样的模板名称在上面给定的请求中的任何地方都不起作用。那么关于如何使用 SDK 形成请求的任何可用文档?
我正在使用此请求创建一个带有模板的团队:
await client.Teams.Request().AddAsync(
new Team
{
DisplayName = "My team",
Description = "desc",
AdditionalData = new Dictionary<string, object>()
{
{"template@odata.bind", "https://graph.microsoft.com/v1.0/teamsTemplates('standard')"}
}
});
如果您的方法不奏效,请检查此 thread 以获得解决方法。