Commands › Microsoft Teams

New-CsAutoAttendantCallableEntity

Microsoft Teams MicrosoftTeams New-*

The New-CsAutoAttendantCallableEntity cmdlet lets you create a callable entity.

Quick start script

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

# 2. Capture the current state first — you cannot roll back what you never recorded
$before = Get-CsAutoAttendantCallableEntity
$before | Format-List

# 3. Make the change
New-CsAutoAttendantCallableEntity -Identity <String> -Type <Object>

# 4. Verify and diff
$after = Get-CsAutoAttendantCallableEntity
Compare-Object ($before | Out-String) ($after | Out-String)

Syntax

New-CsAutoAttendantCallableEntity -Identity <String> -Type <User | ApplicationEndpoint | ConfigurationEndpoint | ExternalPstn | SharedVoicemail> [-Tenant <Guid>] [-EnableTranscription] [-EnableSharedVoicemailSystemPromptSuppression] [-CallPriority <Int16>] [-SharedVoicemailHistoryTemplateId <String>] [<CommonParameters>]

Parameters (7)

ParameterTypeRequiredWhat it controls
-CallPriority Int16 The Call Priority of the MenuOption, only applies when the `Type` is `ApplicationEndpoint` or `ConfigurationEndpoint`.
-EnableSharedVoicemailSystemPromptSuppression SwitchParameter Suppresses the "Please leave a message after the tone" system prompt when transferring to shared voicemail.
-EnableTranscription SwitchParameter Enables the email transcription of voicemail, this is only supported with shared voicemail callable entities.
-Identity String yes The Identity parameter represents the ID of the callable entity; this can be either a Object ID or a TEL URI.
-SharedVoicemailHistoryTemplateId String The SharedVoicemailHistoryTemplateId parameter specifies the ID of the Shared Call History template. When this template is assigned to an Auto Attendant, historical data for shared voicemails is collected and...
-Tenant Guid This parameter is reserved for Microsoft internal use only.
-Type Object yes The Type parameter represents the type of the callable entity, which can be any of the following:

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