1

I'm developing OWA add-in using OWA REST API

I'm not able to get the filtered result when fetch the attachment list with $filter=inlinImage eq true for example:

https://outlook.office.com/api/v2.0/me/messages/{id}/attachments?$filter=IsInline%20eq%20true

or

https://graph.microsoft.com/v1.0/me/messages/{id}/attachments?$filter=IsInline%20eq%20true

knowing that is says in the resource reference that isInline is Filterable, and I got the response 200 when doing the requests above but the without filtering the data by that query params

Is this an expected behaviour? how can I get this data otherwise?

4

1 回答 1

0

这可能对寻求帮助从 ms graph 端点过滤附件的人有所帮助。

https://docs.microsoft.com/en-us/graph/known-issues

$filter: /attachments 端点不支持过滤器。如果存在,$filter 参数将被忽略。

于 2021-12-29T23:03:48.527 回答