isRecordingEnabled is true in calender Event api

Interview 1 Reputation point
2022-03-11T13:16:05.267+00:00

How to unable isRecordingEnabled is true in calender Event api for getting bydefault recording on in all meeting.

Microsoft Security | Microsoft Graph
0 comments No comments
{count} votes

1 answer

Sort by: Most helpful
  1. Srinivasa Rao Darna 6,761 Reputation points Microsoft External Staff
    2022-03-11T13:44:26.587+00:00

    Hello @Interview ,

    You can use create-onlinemeetings to enable auto recording of teams meetings and set recordAutomatically:true.
    Here is a sample request body.

    POST https://graph.microsoft.com/v1.0/me/onlineMeetings  
    Content-Type: application/json  
      
    {  
      "startDateTime":"2022-03-11T14:00:34.2444915-07:00",  
      "endDateTime":"2022-03-11T14:30:34.2464912-07:00",  
      "subject":"Online Meeting",  
      "recordAutomatically":true  
    }  
    

    Source: onlinemeeting

    Hope this helps.
    If the answer is helpful, please click "Accept Answer" and kindly upvote it. If you have extra questions about this answer, please click "Comment".


Your answer

Answers can be marked as Accepted Answers by the question author, which helps users to know the answer solved the author's problem.