在Office365 Outlook日历中创建文件夹时,我们收到错误消息“ 文件夹已存在 ”,但是我们无法在Office365日历。我们在Outlook Web App和客户端应用程序中交叉检查了具有相同名称的文件夹,但是不存在具有该名称的文件夹。下面是API和响应。
POST https://graph.microsoft.com/v1.0/me/calendars HTTP / 1.1
请求正文:{“名称”:“新日历”}
"error": {
"code": "ErrorFolderExists",
"message": "A folder with the specified name already exists.",
"innerError": {
"request-id": "c046eeba-f6f7-4b7e-98a3-b6a9a7055dd2",
"date": "2018-11-08T14:16:10"
}
}
答案 0 :(得分:0)
您可以使用过滤器查询日历名称
https://graph.microsoft.com/v1.0/me/calendars?$filter=name eq 'New calendar'
然后使用删除请求和日历ID将其删除
https://graph.microsoft.com/v1.0/me/calendars/<insert calendar_id here>