CallRecordings.Read.All
Allows the app to read call recordings for all calls without a signed-in user.
Permission Details
Read all call recordings
Allows the app to read call recordings for all calls without a signed-in user.
ce8fb1f1-5e1f-44a0-b102-4ec28454d0dc
Read all recordings of calls.
Allows the app to read all recordings of calls, on behalf of the signed-in user.
63d31bd6-bcf5-40ca-8283-ba4130a66405
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}"].Recordings["{callRecording-id}"].GetAsync();
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();
Import-Module Microsoft.Graph.CloudCommunications
Get-MgUserOnlineMeetingRecording -UserId $userId -OnlineMeetingId $onlineMeetingId -CallRecordingId $callRecordingId
# 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
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 CallRecordings.Read.All
Grant Admin Consent
Application permissions always require admin consent.