Possible to update an Exchange o365 Online meeting Location to another room with graphapi or graph explorer

旧巷老猫 提交于 2019-12-23 02:19:26

问题


I am able to update the meeting event but does not update location to an actual room on Azure Active directory, only updates to text.

So say someroom is an meeting room.. we only get "someroom" text location.

Is this possible? how

Trying this. Also read maybe I need location.AdditonalData , but see no examples anywhere.

    PATCH : Event_URL
Body PAYLOAD :
{
 "subject": "Test Graph 2",
 "location": {
  "displayName": "someroom",
  "locationEmailAddress": "someroom@mydomain.onmicrosoft.com",
  "address": {
   "@odata.type": "microsoft.graph.physicalAddress"
  }
 }
}

also tried this:

endpoint: https://graph.microsoft.com/beta/me/events/%7BEVENT_ID%7D


{
 "subject": "Test Graph 2",
 "location": {
  "address": {
   "@odata.type": "microsoft.graph.physicalAddress"
  },
  "coordinates": {
   "@odata.type": "microsoft.graph.outlookGeoCoordinates"
  },
  "displayName": "room1",
  "locationEmailAddress": "room1@mydomain.onmicrosoft.com",
  "locationType": "conferenceRoom",
  "uniqueId": "room1",
  "uniqueIdType": "private"
 }
}



enter code here

来源:https://stackoverflow.com/questions/49592526/possible-to-update-an-exchange-o365-online-meeting-location-to-another-room-with

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!