Microsoft Graph API 不返回“已取消”事件

Smi*_*esh 5 microsoft-graph-api

给定 startDateTime 和 endDateTime,我正在尝试使用 Microsoft 图形 API 获取会议室日历中的所有事件。我尝试了以下 API -

1. https://graph.microsoft.com/v1.0/users/{id}/events?startDateTime=2017-03-20T05:00:00.0000000&endDateTime=2017-04-06T21:00:00.0000000
2.https://graph.microsoft.com/v1.0/users/{id}/calendar/calendarView?startDateTime=2017-03-20T05:00:00.0000000&endDateTime=2017-04-06T21:00:00.0000000
Run Code Online (Sandbox Code Playgroud)

响应包括所有 isCancelled=false 的事件。如何获取已取消的事件?

&$filter=isCancelled%20eq%20true也返回空,因为没有isCancelled=true响应事件

Ven*_*SFT 5

根据设计,当事件被取消时,它就会从日历中删除。因此,目前无法查询已删除事件的列表。我们的积压工作中有一个项目用于支持已删除的事件,但没有时间表。