Skip to content

Commit 3b266a5

Browse files
authored
Update New-CsAutoAttendant.md
Updating for missing parameters.
1 parent 8848a45 commit 3b266a5

File tree

1 file changed

+40
-1
lines changed

1 file changed

+40
-1
lines changed

teams/teams-ps/teams/New-CsAutoAttendant.md

Lines changed: 40 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ Use the New-CsAutoAttendant cmdlet to create a new Auto Attendant (AA).
1818
## SYNTAX
1919

2020
```powershell
21-
New-CsAutoAttendant -Name <String> -LanguageId <String> -TimeZoneId <String> -DefaultCallFlow <Object> [-CallFlows <Object>] [-CallHandlingAssociations <Object>] [-Operator <Object>] [-VoiceId <String>] [-EnableVoiceResponse] [-InclusionScope <Object>] [-ExclusionScope <Object>] [-Tenant <Guid>] [<CommonParameters>]
21+
New-CsAutoAttendant -Name <String> -LanguageId <String> -TimeZoneId <String> -DefaultCallFlow <Object> [-CallFlows <Object>] [-CallHandlingAssociations <Object>] [-Operator <Object>] [-VoiceId <String>] [-EnableVoiceResponse] [-InclusionScope <Object>] [-ExclusionScope <Object>] [-AuthorizedUsers <List>] [-HideAuthorizedUsers <List>] [-Tenant <Guid>] [<CommonParameters>]
2222
```
2323

2424
## DESCRIPTION
@@ -27,6 +27,11 @@ Each AA can be associated with phone numbers that allow callers to reach specifi
2727

2828
You can create new AAs by using the New-CsAutoAttendant cmdlet; each newly created AA gets assigned a random string that serves as the identity of the AA.
2929

30+
> [!CAUTION]
31+
> The following configuration parameters are currently only available in PowerShell and do not appear in Teams admin center. Saving a call queue configuration through Teams admin center will _remove_ any of these configured items:
32+
>
33+
> - -HideAuthorizedUsers
34+
3035
**NOTES**:
3136

3237
- To setup your AA for calling, you need to create an application instance first using `New-CsOnlineApplicationInstance` cmdlet , then associate it with your AA configuration using `New-CsOnlineApplicationInstanceAssociation` cmdlet.
@@ -466,6 +471,40 @@ Accept pipeline input: False
466471
Accept wildcard characters: False
467472
```
468473

474+
### -AuthorizedUsers
475+
This is a list of GUIDs for users who are authorized to make changes to this call queue. The users must also have a TeamsVoiceApplications policy assigned. The GUID should contain 32 digits with 4 dashes (xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx).
476+
477+
```yaml
478+
Type: List
479+
Parameter Sets: (All)
480+
Aliases:
481+
applicable: Microsoft Teams
482+
483+
Required: False
484+
Position: Named
485+
Default value: None
486+
Accept pipeline input: False
487+
Accept wildcard characters: False
488+
```
489+
490+
### -HideAuthorizedUsers
491+
_Saving a call queue configuration through Teams admin center will *remove* this setting._
492+
493+
This is a list of GUIDs of authorized users who should not appear on the list of supervisors for the agents who are members of this queue. The GUID should contain 32 digits with 4 dashes (xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx).
494+
495+
```yaml
496+
Type: List
497+
Parameter Sets: (All)
498+
Aliases:
499+
applicable: Microsoft Teams
500+
501+
Required: False
502+
Position: Named
503+
Default value: None
504+
Accept pipeline input: False
505+
Accept wildcard characters: False
506+
```
507+
469508
### -Tenant
470509

471510
```yaml

0 commit comments

Comments
 (0)