Building, integrating, or customizing apps and workflows within Microsoft Teams using developer tools and APIs
Hi wenceslao,
Thank you for reaching out.
Based on the currently documented Microsoft Graph behavior, the following configuration should not be used as a transcript-only setting:
{
"recordAutomatically": true,
"allowTranscription": true,
"allowRecording": false
}
recordAutomatically instructs Teams to start recording automatically. allowRecording: false prevents recording, while allowTranscription: true permits transcription but does not independently cause transcription to start.
Microsoft Graph does not currently document recordAutomatically: true together with allowRecording: false as a supported method for automatically starting transcription without recording. Graph may accept the individual properties, but the resulting behavior is not defined. This may explain why some meetings produce a transcript while others fail to finalize it after the recording workflow is stopped.
The new Teams Transcribe only automatic meeting option is not currently represented by a documented property on the Microsoft Graph v1.0 or beta onlineMeeting resource. The Teams UI can configure this behavior, but the corresponding option is not presently available through the published Graph schema.
Until such a property is exposed, the supported Graph-based automatic path is:
{
"recordAutomatically": true,
"allowRecording": true,
"allowTranscription": true
}
If meeting recording is prohibited, automatic transcript-only behavior must currently be configured through the Teams meeting options UI. Alternatively, an authorized participant can start transcription manually after joining the meeting.
I hope this information clarified your concerns. Thank you for your time and patience.