如何基于图表API中的subject和body / bodyPreview过滤Outlook消息?

时间:2019-06-14 04:16:51

标签: office365api outlook-restapi

我无法全神贯注地在Microsoft graph api上过滤Outlook消息。截至目前,我还没有做到这一点,效果很好:

https://graph.microsoft.com/v1.0/users/*/messages?$count=true&$top=100&$filter=(ReceivedDateTime ge 2019-03-12T16:01:00Z and receivedDateTime lt 2019-04-20T19:01:00Z) AND (startswith(subject,'some subject text'))...

但是我需要根据身体内容进一步过滤结果,这就是我添加此内容的原因:

... AND (contains(bodyPreview,'some bodytext'))

这失败了吗??基于以下参数在Outlook中筛选邮件的正确方法是什么?

  • 接收日期开始
  • 收到日期结束
  • 主题以(this或this或this ...)开头
  • 主体包含(此或此或此...)

0 个答案:

没有答案