You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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
29
26
30
27
> [!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.
32
29
33
30
## EXAMPLES
34
31
35
32
### -------------------------- Example 1 --------------------------
36
33
```
37
-
Get-CsComplianceRecordingForCallQueueTemplate
34
+
New-CsComplianceRecordingForCallQueueTemplate
38
35
```
39
36
40
-
This example gets all Call Queues in the organization.
37
+
41
38
42
39
### -------------------------- Example 2 --------------------------
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.
48
44
49
45
## PARAMETERS
50
46
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.
53
49
54
50
```yaml
55
51
Type: System.String
56
52
Parameter Sets: (All)
57
53
Aliases:
58
54
applicable: Microsoft Teams
59
55
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
61
73
Position: Named
62
74
Default value: None
63
75
Accept pipeline input: False
64
76
Accept wildcard characters: False
65
77
```
66
78
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
+
67
145
### CommonParameters
68
146
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).
0 commit comments