Skip to content

Commit ecbaab7

Browse files
author
Amr Elroumy
authored
Add shared voicemail docs for CallableEntity creation
1 parent f87c014 commit ecbaab7

File tree

1 file changed

+23
-0
lines changed

1 file changed

+23
-0
lines changed

skype/skype-ps/skype/New-CsAutoAttendantCallableEntity.md

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ The New-CsAutoAttendantCallableEntity cmdlet lets you create a callable entity f
2626

2727
- User
2828
- ApplicationEndpoint
29+
- SharedVoicemail
2930

3031
## EXAMPLES
3132

@@ -59,6 +60,14 @@ This example gets a user object using Get-CsOnlineUser cmdlet. We then use the A
5960

6061
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.
6162

63+
### -------------------------- Example 5 --------------------------
64+
```powershell
65+
$callableEntityId = (Find-CsGroup -SearchQuery "Main Auto Attendant") -MaxResults 1 -MailEnabledOnly $true | Select-Object -Property Id
66+
$callableEntity = New-CsAutoAttendantCallableEntity -Identity $callableEntityId -Type SharedVoicemail -EnableTranscription
67+
```
68+
69+
This example gets an mail-enabled group by name using Find-CsGroup cmdlet. We then use the ObjectId of that group to create a shared voicemail callable entity that supports transcription.
70+
6271
## PARAMETERS
6372

6473
### -Identity
@@ -115,6 +124,20 @@ Accept pipeline input: False
115124
Accept wildcard characters: False
116125
```
117126
127+
### -EnableTranscription
128+
```yaml
129+
Type: SwitchParameter
130+
Parameter Sets: (All)
131+
Aliases:
132+
Applicable: Skype for Business Online
133+
134+
Required: False
135+
Position: Named
136+
Default value: None
137+
Accept pipeline input: False
138+
Accept wildcard characters: False
139+
```
140+
118141
### CommonParameters
119142
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).`
120143

0 commit comments

Comments
 (0)