
I have a flow that automatically schedules meetings and it works great using the Teams/create teams meeting action. However, the action does not have a built-in field for "record meeting automatically." I'd like them to be automatically recorded. There is an advertised method for this:
PATCH https://graph.microsoft.com/v1.0/me/onlineMeetings/<id>
Content-Type: application/json
{ "recordAutomatically": true }
Unfortunately, any way I run this in an Outlook/Send HTTP request action ends up with a "bad URI" message. My best guess is that this is because /me/onlineMeetings is not a supported method for this action. The action description has this to say:
These segments are supported: 1st segement: /me, /users/ 2nd segment: messages, mailFolders, events, calendar, calendars, outlook, inferenceClassification.
Is there another way of setting recordAutomatically on a meeting object from within Power Automate without buying a premium connector?
Ultimately, I'd like to throw the recording onto a sharepoint library and link it from a sharepoint list lookup field.