我可以更新会议事件,但不会将位置更新到Azure Active目录上的实际房间,只更新文本。
所以说someroom是一个会议室..我们只能得到" someroom"文字位置。
这可能吗?如何
试试这个。也读也许我需要location.AdditonalData,但在任何地方都看不到任何例子。
PATCH : Event_URL
Body PAYLOAD :
{
"subject": "Test Graph 2",
"location": {
"displayName": "someroom",
"locationEmailAddress": "someroom@mydomain.onmicrosoft.com",
"address": {
"@odata.type": "microsoft.graph.physicalAddress"
}
}
}
也尝试了这个:
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