Forum Discussion
Can I update existing meeting via API so "Record automaticaly" is on?
Hi
Currently we using MS Booking so our students register for the exam. We plan to make is "self serve" so time of the instructor is not required. A meeting got the option "Record and transcribe automatically". I would like to turn it on via API. Is that possible?
I checked https://learn.microsoft.com/en-us/graph/api/bookingappointment-update?view=graph-rest-1.0 and https://learn.microsoft.com/en-us/graph/api/bookingbusiness-post-appointments?view=graph-rest-1.0&tabs=http to see if there is any property for "recording" but did not find anything.
At the moment, you can’t enable “Record and transcribe automatically” directly through the Bookings API, since those endpoints don’t expose that setting. However, when Bookings creates a Teams meeting, you can use the Microsoft Graph OnlineMeeting API to update the meeting itself. With that, you can PATCH the meeting object and set recordAutomatically to true, as long as your Teams policies allow recording and transcription. In other words, Bookings handles the appointment side, but you’ll need to work with the Teams OnlineMeeting API if you want recordings to start automatically.
------------------------------------
Don't forget to mark as solution if my answer suits you
1 Reply
At the moment, you can’t enable “Record and transcribe automatically” directly through the Bookings API, since those endpoints don’t expose that setting. However, when Bookings creates a Teams meeting, you can use the Microsoft Graph OnlineMeeting API to update the meeting itself. With that, you can PATCH the meeting object and set recordAutomatically to true, as long as your Teams policies allow recording and transcription. In other words, Bookings handles the appointment side, but you’ll need to work with the Teams OnlineMeeting API if you want recordings to start automatically.
------------------------------------
Don't forget to mark as solution if my answer suits you