Skip to content

Commit c765ee1

Browse files
authored
Create Get-CsMainlineAttendantFlow.md
1 parent 341fbb0 commit c765ee1

File tree

1 file changed

+124
-0
lines changed

1 file changed

+124
-0
lines changed
Lines changed: 124 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,124 @@
1+
---
2+
external help file: Microsoft.Rtc.Management.dll-Help.xml
3+
online version: https://learn.microsoft.com/powershell/module/teams/get-csmainlineattendantflow
4+
applicable: Microsoft Teams
5+
title: Get-CsMainlineAttendantFlow
6+
author: tomkau
7+
ms.author: tomkau
8+
manager: bulenteg
9+
ms.reviewer:
10+
schema: 2.0.0
11+
---
12+
13+
# Get-CsMainlineAttendantFlow
14+
15+
## SYNOPSIS
16+
Creates new Call Queue in your Skype for Business Online organization.
17+
18+
## SYNTAX
19+
20+
```
21+
Get-CsMainlineAttendantFlow [-MaConfigId <String>] [-Type <String>] [-FlowId <String>] [-Tenant <Guid>] [<CommonParameters>]
22+
```
23+
24+
## DESCRIPTION
25+
The Get-CsMainlineAttendantFlow cmdlet returns information about the Mainline Attendant flows configured in your organization.
26+
27+
> [!CAUTION]
28+
> This cmdlet will only work for customers that are participating in the Voice Applications private preview for these features. General Availability for this functionality has not been determined at this time.
29+
30+
## EXAMPLES
31+
32+
### Example 1
33+
```
34+
Get-CsMainlineAttendantFlow
35+
```
36+
37+
This example will list all the Mainline Attendant flows in the tenant.
38+
39+
### Example 2
40+
```
41+
Get-CsMainlineAttendantFlow -MaConfig 0b31bbe5-e2a0-4117-9b6f-956bca6023f8
42+
```
43+
44+
This example will list all the Mainline Attendant flows associated with the specific configuration id.
45+
46+
### Example 3
47+
```
48+
Get-CsMainlineAttendantFlow -Type Type 1 | Type 2
49+
```
50+
51+
This example will list all the Mainline Attendant flows with the specified type.
52+
53+
### Example 4
54+
```
55+
Get-CsMainlineAttendantFlow -FlowId 956bca6-e2a0-4117-9b6f-023f80b31bbe5
56+
```
57+
58+
This example will list the Mainline Attendant flow with the specified flow id.
59+
60+
## PARAMETERS
61+
62+
### -MaConfigId
63+
The Mainline Attendant configuration Id
64+
65+
```yaml
66+
Type: String
67+
Parameter Sets: (All)
68+
Aliases:
69+
applicable: Microsoft Teams
70+
71+
Required: False
72+
Position: Named
73+
Default value: None
74+
Accept pipeline input: False
75+
Accept wildcard characters: False
76+
```
77+
78+
### -Type
79+
The Mainline Attendant flow type
80+
81+
PARAMVALUE: Type 1 | Type 2
82+
83+
```yaml
84+
Type: String
85+
Parameter Sets: (All)
86+
Aliases:
87+
applicable: Microsoft Teams
88+
89+
Required: False
90+
Position: Named
91+
Default value: None
92+
Accept pipeline input: False
93+
Accept wildcard characters: False
94+
```
95+
96+
### -FlowId
97+
The Mainline Attendant flow id
98+
99+
```yaml
100+
Type: String
101+
Parameter Sets: (All)
102+
Aliases:
103+
applicable: Microsoft Teams
104+
105+
Required: False
106+
Position: Named
107+
Default value: None
108+
Accept pipeline input: False
109+
Accept wildcard characters: False
110+
```
111+
112+
### CommonParameters
113+
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).
114+
115+
## INPUTS
116+
117+
## OUTPUTS
118+
119+
### Microsoft.Rtc.Management.Hosted.CallQueue.Models.CallQueue
120+
121+
## NOTES
122+
123+
## RELATED LINKS
124+

0 commit comments

Comments
 (0)