Commands › Microsoft Teams

Get-CsOnlineDialInConferencingServiceNumber

Microsoft Teams MicrosoftTeams Get-*

Return all of the default dial-in service numbers that are assigned to an Office 365 audio conferencing bridge.

Quick start script

# Get-CsOnlineDialInConferencingServiceNumber — quick start (serv365.ai)
# 1. Connect (app-only shown; interactive: omit the certificate parameters)
Connect-MicrosoftTeams -CertificateThumbprint $thumb -ApplicationId $appId -TenantId $tenantId

# 2. Run and inspect
Get-CsOnlineDialInConferencingServiceNumber | Format-List

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

Syntax — 5 parameter sets

FiltersParams (Default)

Get-CsOnlineDialInConferencingServiceNumber [-BridgeName <String>] [-City <String>] [-ResultSize <Int32>]
 [-DomainController <Fqdn>] [-Force] [<CommonParameters>]

UniqueNumberParams

Get-CsOnlineDialInConferencingServiceNumber [-Identity] <String> [-Tenant <Guid>]
 [-DomainController <Fqdn>] [-Force] [<CommonParameters>]

UniqueBridgeParams

Get-CsOnlineDialInConferencingServiceNumber -BridgeId <Guid> [-City <String>] [-ResultSize <Int32>]
 [-DomainController <Fqdn>] [-Force] [<CommonParameters>]

TenantIdParams

Get-CsOnlineDialInConferencingServiceNumber [-BridgeName <String>] -Tenant <Guid> [-City <String>]
 [-ResultSize <Int32>] [-DomainController <Fqdn>] [-Force] [<CommonParameters>]

1 more parameter sets — see the parameter table below.

Parameters (9)

ParameterTypeRequiredWhat it controls
-BridgeId Guid Specifies the globally-unique identifier (GUID) for the audio conferencing bridge. When it's used it returns all of the service numbers that are configured on the audio conferencing bridge.
-BridgeName String Specifies the name of the audio conferencing bridge. When it is used it returns all of the service numbers that are configured on the audio conferencing bridge.
-City String Specifies the city geocode to be used. When used it lists all of the service numbers for a specific city geocode.
-DomainController Fqdn Specifies the domain controller that's used by the cmdlet to read or write the specified data. Valid inputs for this parameter include:
-Force SwitchParameter The Force switch specifies whether to suppress warning and confirmation messages. It can be useful in scripting to suppress interactive prompts. If the Force switch isn't provided in the command, you're prompted for...
-Identity String Specifies the default dial-in service number string.
-ResultSize Int32 Specifies the number of records returned by the cmdlet. For example, to return seven users (regardless of the number of users that are in your forest) include the ResultSize parameter and set the parameter value to...
-Tenant Guid This parameter is reserved for internal Microsoft use.
-TenantDomain String This parameter is reserved for internal Microsoft use.

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