【发布时间】:2019-01-01 10:41:43
【问题描述】:
我正在尝试通过 Microsoft graph api 从我的收件箱中获取所有会议请求。 通过这个电话,我收到了收件箱中的所有电子邮件:
https://graph.microsoft.com/v1.0/me/mailFolders/inbox/messages
现在我正在尝试仅过滤会议请求
https://graph.microsoft.com/v1.0/me/mailFolders/inbox/messages?$filter=meetingMessageType eq meetingRequest
但这会返回
Could not find a property named 'meetingMessageType' on type 'Microsoft.OutlookServices.Message'.
如何在用户收件箱中获取所有未答复的会议请求? 非常感谢。
【问题讨论】:
标签: outlook office365 microsoft-graph-api