ESC
Type to search...

CallRecordings.Read.All

Export JSON
Export CSV
Copy URL
Print
ApplicationDelegated Read All Resources

Allows the app to read call recordings for all calls 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 call recordings

Allows the app to read call recordings for all calls without a signed-in user.

Delegated Permission Admin consent required

Read all recordings of calls.

Allows the app to read all recordings of calls, 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}/recordings/{recordingId}
GET /me/adhocCalls/{callId}/recordings/{recordingId}/content
GET /me/onlineMeetings/{meetingId}/recordings/{recordingId}
GET /me/onlineMeetings/{meetingId}/recordings/{recordingId}/content
GET /users/{userId}/adhocCalls/{callId}/recordings/{recordingId}
GET /users/{userId}/adhocCalls/{callId}/recordings/{recordingId}/content
GET /users/{userId}/onlineMeetings/{meetingId}/recordings/{recordingId}
GET /users/{userId}/onlineMeetings/{meetingId}/recordings/{recordingId}/content
GET /users/{usersId}/adhocCalls/getAllRecordings
Exact Microsoft Learn match

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

Methods
GET /me/adhocCalls/{callId}/recordings/{recordingId}
GET /me/adhocCalls/{callId}/recordings/{recordingId}/content
GET /me/onlineMeetings/{meetingId}/recordings/{recordingId}
GET /me/onlineMeetings/{meetingId}/recordings/{recordingId}/content
GET /users/{userId}/adhocCalls/{callId}/recordings/{recordingId}
GET /users/{userId}/adhocCalls/{callId}/recordings/{recordingId}/content
GET /users/{userId}/onlineMeetings/{meetingId}/recordings/{recordingId}
GET /users/{userId}/onlineMeetings/{meetingId}/recordings/{recordingId}/content
GET /users/{usersId}/adhocCalls/getAllRecordings
Exact Microsoft Learn PowerShell match

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

Commands
Get-MgUserOnlineMeetingRecording /me/onlineMeetings/{meetingId}/recordings/{recordingId}
Get callRecording
Get-MgUserOnlineMeetingRecordingContent /me/onlineMeetings/{meetingId}/recordings/{recordingId}
Get callRecording
Exact Microsoft Learn PowerShell match

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

Commands
Get-MgBetaUserOnlineMeetingRecording /me/onlineMeetings/{meetingId}/recordings/{recordingId}
Get callRecording
Get-MgBetaUserOnlineMeetingRecordingContent /me/onlineMeetings/{meetingId}/recordings/{recordingId}
Get callRecording

Code Examples

C# / .NET SDK
Get callRecording
// 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}"].Recordings["{callRecording-id}"].GetAsync();
JavaScript
Get callRecording
const options = {
	authProvider,
};

const client = Client.init(options);

let callRecording = await client.api('/users/b935e675-5e67-48b9-8d45-249d5f88e964/onlineMeetings/MSpiOTM1ZTY3NS01ZTY3LTQ4YjktOGQ0NS0yNDlkNWY4OGU5NjQqMCoqMTk6bWVldGluZ19ZbU0zTnpJNU9USXRZakU0WlMwME1tUTNMVGt6TVRRdFkyWm1PRGRtWmpsaVptRTNAdGhyZWFkLnYy/recordings/7e31db25-bc6e-4fd8-96c7-e01264e9b6fc')
	.get();
PowerShell
Get callRecording
Import-Module Microsoft.Graph.CloudCommunications

Get-MgUserOnlineMeetingRecording -UserId $userId -OnlineMeetingId $onlineMeetingId -CallRecordingId $callRecordingId
Python
Get callRecording
# 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').recordings.by_call_recording_id('callRecording-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 CallRecordings.Read.All

4

Grant Admin Consent

Application permissions always require admin consent.