Commands › Exchange Online

Get-UMCallSummaryReport

Exchange Online ExchangeOnlineManagement Get-*

Return statistics about all calls received or placed by Mailbox servers running the Microsoft Exchange Unified Messaging service in an organization.

Quick start script

# Get-UMCallSummaryReport — quick start (serv365.ai)
# 1. Connect (app-only shown; interactive: omit the certificate parameters)
Connect-ExchangeOnline -CertificateThumbprint $thumb -AppId $appId -Organization $org

# 2. Run and inspect
Get-UMCallSummaryReport -GroupBy <GroupBy> | Format-List

# 3. Export for evidence / drift tracking
Get-UMCallSummaryReport | Export-Clixml .\UMCallSummaryReport-$(Get-Date -Format yyyyMMdd).xml

Syntax

Get-UMCallSummaryReport -GroupBy <GroupBy>
 [-DomainController <Fqdn>]
 [-UMDialPlan <UMDialPlanIdParameter>]
 [-UMIPGateway <UMIPGatewayIdParameter>]
 [<CommonParameters>]

Parameters (4)

ParameterTypeRequiredWhat it controls
-GroupBy GroupBy yes The GroupBy parameter specifies how to return the results. Valid values are:
-DomainController Fqdn The DomainController parameter specifies the domain controller that's used by this cmdlet to read data from or write data to Active Directory. You identify the domain controller by its fully qualified domain name...
-UMDialPlan UMDialPlanIdParameter The UMDialPlan parameter specifies the Unified Messaging (UM) dial plan to show statistics for. If you don't specify a dial plan, statistics are included for all dial plans in the organization.
-UMIPGateway UMIPGatewayIdParameter The UMIPGateway parameter specifies the UM IP gateway to show statistics for. If you don't specify a UM IP gateway, statistics are included for all UM IP gateways for a selected dial plan, or, if no dial plan is...

Reference facts derived from Microsoft documentation, © Microsoft, licensed CC BY 4.0; restructured with original guidance by serv365.ai.