Microsoft graph API-我想列出用户白天的所有会议/约会

时间:2020-03-06 08:30:45

标签: microsoft-graph-api

当前我正在这样做

https://graph.microsoft.com/v1.0//users/emailaddress/calendar/events?$filter=(start/dateTime 
ge  '2019-07-11')  and (start/dateTime lt  '2019-07-12')

但是我不确定我是否在调用正确的api。

1 个答案:

答案 0 :(得分:1)

您应该使用更简单的语句:

https://graph.microsoft.com/v1.0/users/emailaddress/calendar/events?$filter=start/dateTime ge '2019-07-11' and start/dateTime lt '2019-07-12'

您可以在Microsoft Graph Explorer中进行快速测试。

相关问题