ESC
Type to search...

OnlineMeetingTranscript.Read.All

Export JSON
Export CSV
Copy URL
Print
ApplicationDelegated Read All Resources

Allows the app to read all transcripts of all online meetings, without a signed-in user.

Permission data: April 6, 2026 at 4:06 AM UTC
Delegated Access App-Only Access

Permission Details

Application Permission

Read all transcripts of online meetings.

Allows the app to read all transcripts of all online meetings, without a signed-in user.

Delegated Permission Admin consent required

Read all transcripts of online meetings.

Allows the app to read all transcripts of online meetings, on behalf of the signed-in user.

Properties

Microsoft Graph v1.0 endpoint-derived-docs

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

Microsoft Graph v1.0 endpoint-derived-docs

JSON representation is shown from stable Microsoft Graph v1.0 metadata.

JSON representation
{
  "@odata.type": "#microsoft.graph.adhocCall",
  "id": "String (identifier)"
}

Relationships

Microsoft Graph v1.0 endpoint-derived-docs

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

Delegated access App-only access
Exact Microsoft Learn match

Microsoft Graph v1.0 endpoints are mapped directly from refreshed Microsoft Learn permissions tables.

Methods
GET /me/adhocCalls/{callId}/transcripts/{transcriptId}
GET /me/adhocCalls/{callId}/transcripts/{transcriptId}/content
GET /me/onlineMeetings/{meetingId}/transcripts/{transcriptId}
GET /me/onlineMeetings/{meetingId}/transcripts/{transcriptId}/content
GET /me/onlineMeetings/{online-meeting-id}/transcripts
GET /users/{user-id}/onlineMeetings/{online-meeting-id}/transcripts
GET /users/{userId}/adhocCalls/{callId}/transcripts/{transcriptId}
GET /users/{userId}/adhocCalls/{callId}/transcripts/{transcriptId}/content
GET /users/{userId}/onlineMeetings/{meetingId}/transcripts/{transcriptId}
GET /users/{userId}/onlineMeetings/{meetingId}/transcripts/{transcriptId}/content
GET /users/{usersId}/onlineMeetings/getAllTranscripts(meetingOrganizerUserId='{userId}',startDateTime={startDateTime},endDateTime={endDateTime})
GET /users/{usersId}/onlineMeetings/getAllTranscripts(meetingOrganizerUserId='{userId}',startDateTime={startDateTime})/delta
Exact Microsoft Learn match

Microsoft Graph beta endpoints are mapped directly from refreshed Microsoft Learn permissions tables.

Methods
GET /me/adhocCalls/{callId}/transcripts/{transcriptId}
GET /me/adhocCalls/{callId}/transcripts/{transcriptId}/content
GET /me/onlineMeetings/{meetingId}/transcripts/{transcriptId}
GET /me/onlineMeetings/{meetingId}/transcripts/{transcriptId}/content
GET /me/onlineMeetings/{online-meeting-id}/transcripts
GET /users/{user-id}/onlineMeetings/{online-meeting-id}/transcripts
GET /users/{userId}/adhocCalls/{callId}/transcripts/{transcriptId}
GET /users/{userId}/adhocCalls/{callId}/transcripts/{transcriptId}/content
GET /users/{userId}/onlineMeetings/{meetingId}/transcripts/{transcriptId}
GET /users/{userId}/onlineMeetings/{meetingId}/transcripts/{transcriptId}/content
GET /users/{usersId}/onlineMeetings/getAllTranscripts(meetingOrganizerUserId='{userId}',startDateTime={startDateTime},endDateTime={endDateTime})
GET /users/{usersId}/onlineMeetings/getAllTranscripts(meetingOrganizerUserId='{userId}',startDateTime={startDateTime})/delta
Exact Microsoft Learn PowerShell match

Microsoft Graph PowerShell v1.0 commands are mapped directly from refreshed Microsoft Learn PowerShell snippets.

Commands
Get-MgUserOnlineMeeting /users/{usersId}/onlineMeetings/getAllTranscripts(meetingOrganizerUserId='{userId}',startDateTime={startDateTime},endDateTime={endDateTime})
onlineMeeting: getAllTranscripts
Get-MgUserOnlineMeetingTranscript /me/onlineMeetings/{meetingId}/transcripts/{transcriptId}
Get callTranscript
Get-MgUserOnlineMeetingTranscript /me/onlineMeetings/{online-meeting-id}/transcripts
List transcripts
Get-MgUserOnlineMeetingTranscriptContent /me/onlineMeetings/{meetingId}/transcripts/{transcriptId}
Get callTranscript
Get-MgUserOnlineMeetingTranscriptMetadataContent /me/onlineMeetings/{meetingId}/transcripts/{transcriptId}
Get callTranscript
Exact Microsoft Learn PowerShell match

Microsoft Graph PowerShell beta commands are mapped directly from refreshed Microsoft Learn PowerShell snippets.

Commands
Get-MgBetaUserOnlineMeeting /users/{usersId}/onlineMeetings/getAllTranscripts(meetingOrganizerUserId='{userId}',startDateTime={startDateTime},endDateTime={endDateTime})
onlineMeeting: getAllTranscripts
Get-MgBetaUserOnlineMeetingTranscript /me/onlineMeetings/{meetingId}/transcripts/{transcriptId}
Get callTranscript
Get-MgBetaUserOnlineMeetingTranscript /me/onlineMeetings/{online-meeting-id}/transcripts
List transcripts-online meetings
Get-MgBetaUserOnlineMeetingTranscriptContent /me/onlineMeetings/{meetingId}/transcripts/{transcriptId}
Get callTranscript
Get-MgBetaUserOnlineMeetingTranscriptMetadataContent /me/onlineMeetings/{meetingId}/transcripts/{transcriptId}
Get callTranscript

Code Examples

C# / .NET SDK
Get callTranscript
// 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();
JavaScript
Get callTranscript
const options = {
	authProvider,
};

const client = Client.init(options);

let callTranscript = await client.api('/users/ba321e0d-79ee-478d-8e28-85a19507f456/onlineMeetings/MSo1N2Y5ZGFjYy03MWJmLTQ3NDMtYjQxMy01M2EdFGkdRWHJlQ/transcripts/MSMjMCMjNzU3ODc2ZDYtOTcwMi00MDhkLWFkNDItOTE2ZDNmZjkwZGY4')
	.get();
PowerShell
Get callTranscript
Import-Module Microsoft.Graph.CloudCommunications

Get-MgUserOnlineMeetingTranscript -UserId $userId -OnlineMeetingId $onlineMeetingId -CallTranscriptId $callTranscriptId
Python
Get callTranscript
# 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

1

Navigate to Azure Portal

Go to App registrations in Microsoft Entra admin center

2

Add API Permission

Select your app → API permissions → Add a permission → Microsoft Graph

3

Select Permission Type

Choose Application permissions or delegated permissions and search for OnlineMeetingTranscript.Read.All

4

Grant Admin Consent

Application permissions always require admin consent.