Commands › Exchange Online

Export-UMCallDataRecord

Exchange Online ExchangeOnlineManagement Export-*

Export Unified Messaging (UM) call data records for UM dial plans and UM IP gateways for a date that you've specified.

Quick start script

# Export-UMCallDataRecord — 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
Export-UMCallDataRecord -ClientStream <Stream> -Date <ExDateTime> | Format-List

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

Syntax

Export-UMCallDataRecord -ClientStream <Stream> -Date <ExDateTime>
 [-Confirm]
 [-DomainController <Fqdn>]
 [-UMDialPlan <UMDialPlanIdParameter>]
 [-UMIPGateway <UMIPGatewayIdParameter>]
 [-WhatIf]
 [<CommonParameters>]

Parameters (7)

ParameterTypeRequiredWhat it controls
-ClientStream Stream yes The ClientStream parameter specifies the .NET stream to use to output for the Unified Messaging call data records.
-Date ExDateTime yes The Date parameter specifies the date of Unified Messaging call data records to retrieve. If there are no call records for the date specified, the report will be empty.
-Confirm SwitchParameter The Confirm switch specifies whether to show or hide the confirmation prompt. How this switch affects the cmdlet depends on whether the cmdlet requires confirmation before proceeding.
-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 UM dial plan to export statistics for. If you don't specify a UM dial plan, statistics include all UM dial plans in the organization.
-UMIPGateway UMIPGatewayIdParameter The UMIPGateway parameter specifies the UM IP gateway to export statistics for. If you don't specify a gateway, statistics include all UM IP gateways in the selected UM dial plan, or if a UM dial plan isn't selected,...
-WhatIf SwitchParameter The WhatIf switch shows what the command does without making any changes. You don't need to specify a value with this switch.

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