meetingTimeSuggestionResults中的位置建议

时间:2017-09-27 22:05:45

标签: microsoft-graph

当我执行FindMeetingTimes而没有任何LocationConstraints时,建议包括远离我办公室位置的会议室,例如我位于达拉斯的克利夫兰会议室。

我试图了解FindMeetingTimes如何运作以及我们如何尝试找到最合适的会议室。

感谢回应。

1 个答案:

答案 0 :(得分:0)

如果没有任何LocationContraints,API将在整个组织中包含会议室。

您需要为API提供一些上下文,以便了解哪些位置有意义。此上下文由LocationContraints对象提供。您需要使用对您有意义的房间资源列表填充它:

"locationConstraint": {
    "isRequired": true,
    "locations": [{
            "resolveAvailability": true,
            "displayName": "Room 1",
            "locationEmailAddress": "room1@contoso.com"
        },
        {
            "resolveAvailability": true,
            "displayName": "Room 3",
            "locationEmailAddress": "room3@contoso.com"
        },
        {
            "resolveAvailability": true,
            "displayName": "Room 3",
            "locationEmailAddress": "room3@contoso.com"
        }
    ],
    "suggestLocation": true
}