gpt4 book ai didi

microsoft-graph-api - 我可以使用 API 在 Microsoft Teams 中创建 channel 吗?

转载 作者:行者123 更新时间:2023-12-04 07:13:31 24 4
gpt4 key购买 nike

我不是程序员 - 只是想找到有关 Microsoft Teams 的问题的答案。我希望我的开发团队自动化 Teams 中的一些流程,包括 channel 的创建和存档。谁能告诉我这是否可以通过 API 实现?

TIA

最佳答案

channel 在 Microsoft Graph API 中可用(在 beta 端点上)。要创建 channel ,您可以 POST 到/channel 端点:

POST https://graph.microsoft.com/beta/teams/{id}/channels
Content-type: application/json

{
"displayName": "Channel Name",
"description": "Channel Description"
}
请求 URL 中的

{id} 是团队的 ID(不要与拥有该团队的组的 ID 混淆)。请求需要在 Authorization header 中包含 Auth token (bearer token)。

有关此方法的更多信息可在 Microsoft Graph 文档页面上找到: https://learn.microsoft.com/en-us/graph/api/channel-post?view=graph-rest-1.0

关于microsoft-graph-api - 我可以使用 API 在 Microsoft Teams 中创建 channel 吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40528865/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com