如何在Microsoft Graph API的POST方法上使用查询参数过滤响应?

时间:2019-06-18 21:08:57

标签: api outlook microsoft-graph schedule microsoft-graph-calendar

我正在尝试在我的办公室内提出一个简单的房间预订申请。用户可以选择一个时间范围,查看可用的房间,然后预定房间(在该时间范围内的日历中创建一个事件)。

为了查看可用的房间,我尝试使用Microsoft Graph REST API,尤其是POST方法-getSchedule

对getSchedule的示例请求如下所示

{        
    "schedules": ["adelev@contoso.onmicrosoft.com", "meganb@contoso.onmicrosoft.com"],
    "startTime": {
        "dateTime": "2019-03-15T09:00:00",
        "timeZone": "Pacific Standard Time"
    },
    "endTime": {
        "dateTime": "2019-03-15T18:00:00",
        "timeZone": "Pacific Standard Time"
    },
    "availabilityViewInterval": "60"
}

我将所有房间都放置在办公室的日程表列表中,然后根据可用性视图在响应中看到它们的可用性。

"@odata.context": "https://graph.microsoft.com/v1.0/$metadata#Collection(microsoft.graph.scheduleInformation)",
    "value": [
        {
            "scheduleId": "adelev@contoso.onmicrosoft.com",
            "availabilityView": "000220000",
            "scheduleItems": [
                {
                    "isPrivate": false,
                    "status": "busy",
                    "subject": "Let's go for lunch",
                    "location": "Harry's Bar",
                    "start": {
                        "dateTime": "2019-03-15T12:00:00.0000000",
                        "timeZone": "Pacific Standard Time"
                    },
                    "end": {
                        "dateTime": "2019-03-15T14:00:00.0000000",
                        "timeZone": "Pacific Standard Time"
                    }
                }
            ],
            "workingHours": {
                "daysOfWeek": [
                    "monday",
                    "tuesday",
                    "wednesday",
                    "thursday",
                    "friday"
                ],
                "startTime": "08:00:00.0000000",
                "endTime": "17:00:00.0000000",
                "timeZone": {
                    "name": "Pacific Standard Time"
                }
            }
        },

但是,我不需要回复中提供的任何其他信息。我只想查看scheduleId和AvailabilityView,因为响应需要花费很多时间才能在计划请求中加载许多房间。

我一直在寻找通过POST请求中的参数过滤响应的可用方法:https://docs.microsoft.com/en-us/graph/query-parameters。但是,我似乎将其应用于我的地址的所有过滤器似乎均未对响应产生任何影响。

我尝试过

https://graph.microsoft.com/v1.0/me/calendar/getschedule?$select=availabilityView

用于请求和其他类似的变体,但没有成功。它们都返回完整的JSON响应。

1 个答案:

答案 0 :(得分:2)

这是OData协议限制。仅根据here记录的GET请求才能查询数据。
除了要求更少的房间开始。较短的周期或较大的间隔,我认为今天没有办法获取更少的数据。