2017-09-27 1 views
1

LocationConstraintsなしでFindMeetingTimesを実行すると、私のオフィスに遠隔の会議室が含まれています。たとえば、ダラスにある間にクリーブランドのconfルームなどです。場所meetingTimeSuggestionResultsの提案

私はFindMeetingTimesがどのように動作し、どのようにconfルームのベストマッチを見つけることができるかを理解しようとしています。

応答を高く評価します。

答えて

0

LocationContraintsが指定されていない場合、APIには組織全体の会議室が含まれます。

APIを提供して、意味のある場所を理解できるようにする必要があります。このコンテキストはLocationContraintsオブジェクトによって提供されます。

"locationConstraint": { 
    "isRequired": true, 
    "locations": [{ 
      "resolveAvailability": true, 
      "displayName": "Room 1", 
      "locationEmailAddress": "[email protected]" 
     }, 
     { 
      "resolveAvailability": true, 
      "displayName": "Room 3", 
      "locationEmailAddress": "[email protected]" 
     }, 
     { 
      "resolveAvailability": true, 
      "displayName": "Room 3", 
      "locationEmailAddress": "[email protected]" 
     } 
    ], 
    "suggestLocation": true 
} 
:あなたの部屋のリソースのリストを入力する必要があります。