Forum Discussion
Can I update existing meeting via API so "Record automaticaly" is on?
- Sep 25, 2025
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
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