简体   繁体   English

Microsoft Graph API:由与会者过滤日历事件

[英]Microsoft Graph API: Filter Calendar Events by Attendees

Have to filter events by multiple attendees, I don't know the proper way of filtering it. 必须由多个与会者过滤事件,我不知道过滤它的正确方法。

https://graph.microsoft.com/v1.0/me/events ?$filter=attendees/any(emailadress:startswith(emailadress/name,'xxxxv@xxx.com')) https://graph.microsoft.com/v1.0/me/events?$ filter = attendees / any(emailadress:startswith(emailadress / name,'xxxxv @ xxx.com'))

"location": {
            "displayName": "Test"
        },
        "recurrence": null,
        "attendees": [
            {
                "type": "required",
                "status": {
                    "response": "none",
                    "time": "0001-01-01T00:00:00Z"
                },
                "emailAddress": {
                    "name": "yyyy ",
                    "address": "yyy@yyy.com"
                }
            },
            {
                "type": "required",
                "status": {
                    "response": "none",
                    "time": "0001-01-01T00:00:00Z"
                },
                "emailAddress": {
                    "name": "xxxx",
                    "address": "xxx@xxx.com"
                }
            },

I want to get events list where attendess emailaddress are 'xxx@xx.com,yyy@yy.com' 我想获取活动列表,其中与会者电子邮件地址为'xxx @ xx.com,yyy @ yy.com'

From what I'm seeing, event attendee filtering seems to be broken. 从我所看到的,事件参与者过滤似乎被打破。 Check the link below: 检查以下链接:

Unable to filter messages... 无法过滤邮件...

I'm still searching to see if there's a way, and will update if/when I find something. 我仍然在寻找是否有办法,如果/当我找到某些东西时会更新。

It seems like there is an open ticket dealing with this very issue. 似乎有一个处理这个问题的公开票。 I've added my information to the ticket, but you might want to, as well. 我已将我的信息添加到故障单中,但您可能也想这样做。

Ms Graph Github Issues Graph Github女士问题

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM