使用图形 API,我无法重新创建已删除的频道。
使用 Microsoft Team windows 客户端,我删除了一个频道。然后,我尝试使用相同的名称重新创建,这似乎有效。但是当我使用图形 API 尝试相同的场景时,我得到“通道名称已经存在”错误。
例子
删除 API:
DELETE https://graph.microsoft.com/v1.0/teams/<groupid>/channels/<ABCchannelid>
创建 API:
POST https://graph.microsoft.com/v1.0/teams/<groupid>/channels
{
"displayName": "ABC",
"description": "desc"
}
回复
{
"error": {
"code": "BadRequest",
"message": "Channel name already existed, please use other name",
"innerError": {
"request-id": "guid",
"date": "2019-12-19T09:01:40"
}
}
}