ESC
Type to search...

CallRecords.Read.All

Export JSON
Export CSV
Copy URL
Print
Application Read All Resources

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

Allows the app to read call records for all calls and online meetings without a signed-in user.

Properties

Properties metadata is not available for this permission mapping. View on Microsoft Learn

JSON Representation

JSON representation is not available for this permission mapping. View on Microsoft Learn

Relationships

Relationships metadata is not available for this permission mapping.

View resource documentation

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 /communications/callRecords
GET /communications/callRecords/{id}
GET /communications/callRecords/{id}/participantsv2
GET /communications/callRecords/{id}/sessions
GET /communications/callRecords/getDirectRoutingCalls(fromDateTime={fromDateTime},toDateTime={toDateTime})
GET /communications/callRecords/getPstnCalls(fromDateTime={fromDateTime},toDateTime={toDateTime})
Exact Microsoft Learn match

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

Methods
GET /communications/callRecords
GET /communications/callRecords/{id}
GET /communications/callRecords/{id}/participantsv2
GET /communications/callRecords/{id}/sessions
GET /communications/callRecords/getDirectRoutingCalls(fromDateTime={fromDateTime},toDateTime={toDateTime})
GET /communications/callRecords/getPstnBlockedUsersLog(fromDateTime={fromDateTime},toDateTime={toDateTime})
GET /communications/callRecords/getPstnCalls(fromDateTime={fromDateTime},toDateTime={toDateTime})
GET /communications/callRecords/getPstnOnlineMeetingDialoutReport(fromDateTime={fromDateTime},toDateTime={toDateTime})
GET /communications/callRecords/getSmsLog(fromDateTime={fromDateTime},toDateTime={toDateTime})
Exact Microsoft Learn PowerShell match

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

Commands
Get-MgCommunicationCallRecord /communications/callRecords/{id}
Get callRecord
Get-MgCommunicationCallRecordParticipantV2 /communications/callRecords/{id}/participantsv2
List participantsv2
Get-MgCommunicationCallRecordSession /communications/callRecords/{id}/sessions
List sessions
Exact Microsoft Learn PowerShell match

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

Commands
Get-MgBetaCommunicationCallRecord /communications/callRecords/{id}
Get callRecord
Get-MgBetaCommunicationCallRecordParticipantV2 /communications/callRecords/{id}/participantsv2
List participantsv2
Get-MgBetaCommunicationCallRecordPstnBlockedUserLog /communications/callRecords/getPstnBlockedUsersLog(fromDateTime={fromDateTime},toDateTime={toDateTime})
callRecord: getPstnBlockedUsersLog
Get-MgBetaCommunicationCallRecordPstnOnlineMeetingDialoutReport /communications/callRecords/getPstnOnlineMeetingDialoutReport(fromDateTime={fromDateTime},toDateTime={toDateTime})
callRecord: getPstnOnlineMeetingDialoutReport
Get-MgBetaCommunicationCallRecordSession /communications/callRecords/{id}/sessions
List sessions
Get-MgBetaCommunicationCallRecordSmLog /communications/callRecords/getSmsLog(fromDateTime={fromDateTime},toDateTime={toDateTime})
callRecord: getSmsLog

Code Examples

C# / .NET SDK
callRecord: getDirectRoutingCalls
// 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.Communications.CallRecords.MicrosoftGraphCallRecordsGetDirectRoutingCallsWithFromDateTimeWithToDateTime(DateTimeOffset.Parse("{fromDateTime}"),DateTimeOffset.Parse("{toDateTime}")).GetAsGetDirectRoutingCallsWithFromDateTimeWithToDateTimeGetResponseAsync();
JavaScript
callRecord: getDirectRoutingCalls
const options = {
	authProvider,
};

const client = Client.init(options);

let callRecord = await client.api('/communications/callRecords/getDirectRoutingCalls(fromDateTime=2019-11-01,toDateTime=2019-12-01)')
	.get();
PowerShell
Get callRecord
Import-Module Microsoft.Graph.CloudCommunications

Get-MgCommunicationCallRecord -CallRecordId $callRecordId
Python
callRecord: getDirectRoutingCalls
# 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.communications.call_records.microsoft_graph_call_records_get_direct_routing_calls_with_from_date_time_with_to_date_time("{fromDateTime}","{toDateTime}").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 and search for CallRecords.Read.All

4

Grant Admin Consent

Application permissions always require admin consent.