简体   繁体   中英

How to update onlineMeeting - Graph API Microsoft teams meeting?

I am trying to insert a teams meeting link into our emails that are sent out. I want to call the api to generate a teams meeting link, WHICH I can do. However, how do I update this meeting if the time needs to be changed or if new participants are added? I can't find anything on the Microsoft Graph API documentation.

https://docs.microsoft.com/en-us/graph/api/application-post-onlinemeetings?view=graph-rest-1.0&tabs=http

  • Only see get,create,delete options

Currently only create meeting event is exposed by Graph API.

PATCH /beta/me/onlineMeetings/{meetingId} appears to work for me, but /PATCH on the v1.0 endpoint returns an error:

{
  "error": {
    "code": "NotImplemented",
    "message": "PATCH onlineMeeting is only supported in graph beta",
    "innerError": {
      "date": "2020-07-12T07:50:58",
      "request-id": "0a1824d8-e329-452f-bc73-988d1de832ed"
    }
  }
}

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM