Graph Connection Requirements
In order to connect to the graph server for calendar and transcriptions we need to add the following permissions to the Entra ID application.

Calendar Access
In the application created for authentication in your Microsoft Entra ID browse to the API permissions tab and add the following permissions
Calendars.Read
Make sure to grant admin concent for the application
Online Meeting Transcripts
In the application created for authentication in your Microsoft Entra ID browse to the API permissions tab and add the following permissions
OnlineMeetings.Read.All
OnlineMeetingTranscript.Read.All
In addition you will need to configure an application access policy found in the documentation on microsoft
First create a policy using the following script and replace the {client-id} of your entra application.
New-CsApplicationAccessPolicy -Identity AIRiskTranscripts -AppIds "{client-id}" -Description "Allow Access to meeting transcripts"
You can either assign this to individuals or globally accross your tenent for someone to access their transcripts
Grant-CsApplicationAccessPolicy -PolicyName Test-policy -Global
Last updated