Skip to content

Commit 0349d77

Browse files
authored
Create Remove-CsComplianceRecordingForCallQueueTemplate.md
1 parent f7a1abe commit 0349d77

File tree

1 file changed

+92
-0
lines changed

1 file changed

+92
-0
lines changed
Lines changed: 92 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,92 @@
1+
---
2+
external help file: Microsoft.Rtc.Management.Hosted.dll-help.xml
3+
online version: https://learn.microsoft.com/powershell/module/teams/Remove-CsComplianceRecordingForCallQueueTemplate
4+
applicable: Microsoft Teams
5+
title: Get-CsComplianceRecordingForCallQueueTemplate
6+
schema: 2.0.0
7+
manager:
8+
author: tomkau
9+
ms.author: tomkau
10+
ms.reviewer: williamlooney
11+
---
12+
13+
# Remove-CsComplianceRecordingForCallQueueTemplate
14+
15+
## SYNOPSIS
16+
Use the Get-CsComplianceRecordingForCallQueueTemplate cmdlet to retrieve a Compliance Recording for Call Queues template.
17+
18+
## SYNTAX
19+
20+
```powershell
21+
Get-CsComplianceRecordingForCallQueueTemplate [-Id <String>] [<CommonParameters>]
22+
```
23+
24+
## 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.
29+
30+
## EXAMPLES
31+
32+
### -------------------------- Example 1 --------------------------
33+
```
34+
Get-CsComplianceRecordingForCallQueueTemplate
35+
```
36+
37+
This example gets all Call Queues in the organization.
38+
39+
### -------------------------- Example 2 --------------------------
40+
```
41+
Get-CsComplianceRecordingForCallQueueTemplate -Id 5e3a575e-1faa-49ff-83c2-5cf1c36c0e01
42+
```
43+
44+
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.
45+
46+
## PARAMETERS
47+
48+
### -Id
49+
The Id parameter is the unique identifier assigned to the Compliance Recording for Call Queue template.
50+
51+
```yaml
52+
Type: System.String
53+
Parameter Sets: (All)
54+
Aliases:
55+
applicable: Microsoft Teams
56+
57+
Required: False
58+
Position: Named
59+
Default value: None
60+
Accept pipeline input: False
61+
Accept wildcard characters: False
62+
```
63+
64+
### CommonParameters
65+
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).
66+
67+
## INPUTS
68+
69+
### None
70+
71+
## OUTPUTS
72+
73+
### Microsoft.Rtc.Management.OAA.Models.AutoAttendant
74+
75+
## NOTES
76+
77+
## RELATED LINKS
78+
79+
New-CsComplianceRecordingForCallQueueTemplate
80+
81+
Set-CsComplianceRecordingForCallQueueTemplate
82+
83+
Remove-CsComplianceRecordingForCallQueueTemplate
84+
85+
Get-CsCallqueue
86+
87+
New-CsCallQueue
88+
89+
Set-CsCallQueue
90+
91+
Remove-CsCallQuuee
92+

0 commit comments

Comments
 (0)