OnlineMeetingTranscript.Read.All
Allows the app to read all transcripts of all online meetings, without a signed-in user.
Permission Details
Read all transcripts of online meetings.
Allows the app to read all transcripts of all online meetings, without a signed-in user.
a4a80d8d-d283-4bd8-8504-555ec3870630
Read all transcripts of online meetings.
Allows the app to read all transcripts of online meetings, on behalf of the signed-in user.
30b87d18-ebb1-45db-97f8-82ccb1f0190c
Properties
Properties is shown from stable Microsoft Graph v1.0 metadata.
| Property | Type | Description |
|---|---|---|
endDateTime |
DateTime |
The meeting end time in UTC. Required when an ad hoc call is ended. |
id |
String |
The unique identifier for the call, including PSTN, 1:1, and group calls. Read-only. |
startDateTime |
DateTime |
The meeting start time in UTC. Required when the call is started. |
recordings |
callRecording collection |
The recordings of a call. Read-only. |
transcripts |
callTranscript collection |
The transcripts of a call. Read-only. |
JSON Representation
JSON representation is shown from stable Microsoft Graph v1.0 metadata.
{
"@odata.type": "#microsoft.graph.adhocCall",
"id": "String (identifier)"
}
Relationships
Relationships is shown from stable Microsoft Graph v1.0 metadata.
| Relationship | Type | Description |
|---|---|---|
recordings |
callRecording collection |
The recordings of a call. Read-only. |
transcripts |
callTranscript collection |
The transcripts of a call. Read-only. |
Graph Methods
Microsoft Graph v1.0 endpoints are mapped directly from refreshed Microsoft Learn permissions tables.
Microsoft Graph beta endpoints are mapped directly from refreshed Microsoft Learn permissions tables.
Microsoft Graph PowerShell v1.0 commands are mapped directly from refreshed Microsoft Learn PowerShell snippets.
Microsoft Graph PowerShell beta commands are mapped directly from refreshed Microsoft Learn PowerShell snippets.
Code Examples
// Code snippets are only available for the latest version. Current version is 5.x
// To initialize your graphClient, see https://learn.microsoft.com/en-us/graph/sdks/create-client?from=snippets&tabs=csharp
var result = await graphClient.Users["{user-id}"].OnlineMeetings["{onlineMeeting-id}"].Transcripts["{callTranscript-id}"].GetAsync();
const options = {
authProvider,
};
const client = Client.init(options);
let callTranscript = await client.api('/users/ba321e0d-79ee-478d-8e28-85a19507f456/onlineMeetings/MSo1N2Y5ZGFjYy03MWJmLTQ3NDMtYjQxMy01M2EdFGkdRWHJlQ/transcripts/MSMjMCMjNzU3ODc2ZDYtOTcwMi00MDhkLWFkNDItOTE2ZDNmZjkwZGY4')
.get();
Import-Module Microsoft.Graph.CloudCommunications
Get-MgUserOnlineMeetingTranscript -UserId $userId -OnlineMeetingId $onlineMeetingId -CallTranscriptId $callTranscriptId
# Code snippets are only available for the latest version. Current version is 1.x
from msgraph import GraphServiceClient
# To initialize your graph_client, see https://learn.microsoft.com/en-us/graph/sdks/create-client?from=snippets&tabs=python
result = await graph_client.users.by_user_id('user-id').online_meetings.by_online_meeting_id('onlineMeeting-id').transcripts.by_call_transcript_id('callTranscript-id').get()
App Registration
Navigate to Azure Portal
Go to App registrations in Microsoft Entra admin center
Add API Permission
Select your app → API permissions → Add a permission → Microsoft Graph
Select Permission Type
Choose Application permissions or delegated permissions and search for OnlineMeetingTranscript.Read.All
Grant Admin Consent
Application permissions always require admin consent.