Skip to content

Commit 0467d03

Browse files
authored
Update New-CsComplianceRecordingForCallQueueTemplate.md
1 parent 497d290 commit 0467d03

File tree

1 file changed

+91
-13
lines changed

1 file changed

+91
-13
lines changed

teams/teams-ps/teams/New-CsComplianceRecordingForCallQueueTemplate.md

Lines changed: 91 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -18,52 +18,130 @@ Use the New-CsComplianceRecordingForCallQueueTemplate cmdlet to create a Complia
1818
## SYNTAX
1919

2020
```powershell
21-
Get-CsComplianceRecordingForCallQueueTemplate [-Id <String>] [<CommonParameters>]
21+
New-CsComplianceRecordingForCallQueueTemplate -Name <String> -Description <String> -BotId <String> [-RequiredDuringCall <Boolean> [-RequiredBeforeCall <Boolean> [-CurrentInvitationCount <Int32>] [-PairedApplication <String>] [<CommonParameters>]
2222
```
2323

2424
## DESCRIPTION
25-
Auto Attendants (AAs) are a key element in the Office 365 Phone System.
26-
Each AA can be associated with phone numbers that allow callers to reach specific people in the organization through a directory lookup. Alternatively, it can route the calls to an operator, a user, another AA, or a call queue.
27-
28-
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.
25+
Put description here
2926

3027
> [!CAUTION]
31-
> This cmdlet will only work for customers that are participating in the Voice Applications private preview for this features. General Availability for this functionality has not been determined at this time.
28+
> This cmdlet will only work for customers that are participating in the Voice Applications private preview for this feature. General Availability for this functionality has not been determined at this time.
3229
3330
## EXAMPLES
3431

3532
### -------------------------- Example 1 --------------------------
3633
```
37-
Get-CsComplianceRecordingForCallQueueTemplate
34+
New-CsComplianceRecordingForCallQueueTemplate
3835
```
3936

40-
This example gets all Call Queues in the organization.
37+
4138

4239
### -------------------------- Example 2 --------------------------
4340
```
44-
Get-CsComplianceRecordingForCallQueueTemplate -Id 5e3a575e-1faa-49ff-83c2-5cf1c36c0e01
41+
New-CsComplianceRecordingForCallQueueTemplate -Id 5e3a575e-1faa-49ff-83c2-5cf1c36c0e01
4542
```
4643

47-
This example gets the Compliance Recording for Call Queue template with the identity 5e3a575e-1faa-49ff-83c2-5cf1c36c0e01. If no Compliance Recording for Call Queue template exists with the identity 5e3a575e-1faa-49ff-83c2-5cf1c36c0e01, then this example generates an error.
4844

4945
## PARAMETERS
5046

51-
### -Id
52-
The Id parameter is the unique identifier assigned to the Compliance Recording for Call Queue template.
47+
### -Name
48+
The name of the compliance recording for call queue template.
5349

5450
```yaml
5551
Type: System.String
5652
Parameter Sets: (All)
5753
Aliases:
5854
applicable: Microsoft Teams
5955

60-
Required: False
56+
Required: True
57+
Position: Named
58+
Default value: None
59+
Accept pipeline input: False
60+
Accept wildcard characters: False
61+
```
62+
63+
### -Description
64+
A description for the compliance recording for call queues template.
65+
66+
```yaml
67+
Type: System.String
68+
Parameter Sets: (All)
69+
Aliases:
70+
applicable: Microsoft Teams
71+
72+
Required: True
6173
Position: Named
6274
Default value: None
6375
Accept pipeline input: False
6476
Accept wildcard characters: False
6577
```
6678
79+
### -BotId
80+
The Id of the compliance recording for call queue bot to invite.
81+
82+
```yaml
83+
Type: System.String
84+
Parameter Sets: (All)
85+
Aliases:
86+
applicable: Microsoft Teams
87+
88+
Required: True
89+
Position: Named
90+
Default value: None
91+
Accept pipeline input: False
92+
Accept wildcard characters: False
93+
```
94+
95+
### -RequiredDuringCall
96+
Indicates if the compliance recording for call queues bot must remain part of the call.
97+
*Strict recording* - if the bot leaves the call, the call will end.
98+
99+
```yaml
100+
Type: System.Booleen
101+
Parameter Sets: (All)
102+
Aliases:
103+
applicable: Microsoft Teams
104+
105+
Required: False
106+
Position: Named
107+
Default value: False
108+
Accept pipeline input: False
109+
Accept wildcard characters: False
110+
```
111+
112+
### -RequiredBeforeCall
113+
Indicates if the compliance recording for call queues bot must be able to join the call.
114+
*Strict recording* - if the bot can't join the call, the call will end.
115+
116+
```yaml
117+
Type: System.Booleen
118+
Parameter Sets: (All)
119+
Aliases:
120+
applicable: Microsoft Teams
121+
122+
Required: False
123+
Position: Named
124+
Default value: False
125+
Accept pipeline input: False
126+
Accept wildcard characters: False
127+
```
128+
129+
### -ConcurrentInvitationCount
130+
The number of concurrent invitations to send to the compliance recording for call queue bot.
131+
132+
```yaml
133+
Type: System.Int32
134+
Parameter Sets: (All)
135+
Aliases:
136+
applicable: Microsoft Teams
137+
138+
Required: False
139+
Position: Named
140+
Default value: 1
141+
Accept pipeline input: False
142+
Accept wildcard characters: False
143+
```
144+
67145
### CommonParameters
68146
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).
69147

0 commit comments

Comments
 (0)