我想过滤对话中自动生成的电子邮件。我听说他们通常有Auto-Submitted = auto-generated
个互联网标头。
我想将过滤器应用于OData查询。因此尝试了以下方法。
https://graph.microsoft.com/v1.0/me/messages?$select=id,singleValueExtendedProperties,InternetMessageHeaders&$filter=singleValueExtendedProperties/Any(ep: ep/Id eq 'String {00020386-0000-0000-C000-000000000046} Name Auto-Submitted' and ep/value ne null and ep/value ne 'auto-generated') and ConversationId eq 'conversationId'
即使{ "name": "Auto-Submitted", "value": "auto-generated"}
中有InternetMessageHeaders
个对象,我也没有得到任何结果。
我也尝试过
https://graph.microsoft.com/v1.0/me/messages?$expand=singleValueExtendedProperties($filter=Id eq 'String {00020386-0000-0000-C000-000000000046} Name Auto-Submitted')&$select=id,createdDateTime,singleValueExtendedProperties,InternetMessageHeaders and ConversationId eq 'conversationId'
检查它是否存在于extendedProperties
bur中,但在singleValueExtendedProperties
中我仍然没有得到任何值。
如果我想念什么,可以让我知道吗?