Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
27 changes: 27 additions & 0 deletions skype/skype-ps/skype/New-CsAutoAttendantCallableEntity.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,11 @@ The New-CsAutoAttendantCallableEntity cmdlet lets you create a callable entity f

- User
- ApplicationEndpoint
- SharedVoicemail

**NOTE**

In order to setup a shared voicemail, an Office 365 Group that can receive external emails is required.

## EXAMPLES

Expand Down Expand Up @@ -59,6 +64,14 @@ This example gets a user object using Get-CsOnlineUser cmdlet. We then use the A

This example gets an application instance by name using Find-CsOnlineApplicationInstance cmdlet. We then use the AAD ObjectId of that application instance to create an application endpoint callable entity.

### -------------------------- Example 5 --------------------------
```powershell
$callableEntityGroup=Find-CsGroup -SearchQuery "Main Auto Attendant" -ExactMatchOnly $true -MailEnabledOnly $true
$callableEntity = New-CsAutoAttendantCallableEntity -Identity $callableEntityId -Type SharedVoicemail -EnableTranscription
```

This example gets an Office 365 group by name using Find-CsGroup cmdlet. Then the Guid of that group is used to create a shared voicemail callable entity that supports transcription.

## PARAMETERS

### -Identity
Expand Down Expand Up @@ -115,6 +128,20 @@ Accept pipeline input: False
Accept wildcard characters: False
```

### -EnableTranscription
```yaml
Type: SwitchParameter
Parameter Sets: (All)
Aliases:
Applicable: Skype for Business Online

Required: False
Position: Named
Default value: None
Accept pipeline input: False
Accept wildcard characters: False
```

### CommonParameters
This cmdlet supports the common parameters: `-Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters (https://go.microsoft.com/fwlink/?LinkID=113216).`

Expand Down