Forum Discussion

marksqeptech's avatar
marksqeptech
Copper Contributor
Nov 29, 2020

Online Meeting Create and Update - id not found

I've created an online meeting using the following method:

 

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

 

I've then gone to update it using the following call (and providing the id returned by the above method):

https://docs.microsoft.com/en-us/graph/api/onlinemeeting-update?view=graph-rest-beta&tabs=http 


However, I get an error saying Invalid meeting id.

 

Any ideas?

  • marksqeptech 

    We are not able to reproduce the issue from our end. Could you please provide screenshot or images of the payload and the error you are receiving.

    Also please confirm that you are using the "PATCH" to update the online meeting.

     

     

    • marksqeptech's avatar
      marksqeptech
      Copper Contributor

      Varaprasad-MSFT  

       

      Thanks for the reply.  

       

      I'm using the /beta/users/{userId}/onlineMeetings/{meetingId} endpoint with an application token not the /beta/me/onlineMeetings/{meetingId} endpoint.

       

      Does that work for you?

      • marksqeptech's avatar
        marksqeptech
        Copper Contributor

        Varaprasad-MSFT 

         

        I'm also using it through the beta nuget package using:

         await graphClient.User["{userId}"].OnlineMeetings["{id}"] .Request() .UpdateAsync(onlineMeeting);

Resources