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 Graph
Microsoft Graph
A Microsoft programmability model that exposes REST APIs and client libraries to access data on Microsoft 365 services.
11,446 questions
0 comments No comments
{count} votes

1 answer

Sort by: Most helpful
  1. Srinivasa Rao Darna 6,711 Reputation points Microsoft Vendor
    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".