Skip to content

Commit c5787de

Browse files
authored
Update Get-CsMainlineAttendantQuestionAnswerFlow.md
1 parent a602070 commit c5787de

File tree

1 file changed

+191
-0
lines changed

1 file changed

+191
-0
lines changed
Lines changed: 191 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,192 @@
11

2+
---
3+
external help file: Microsoft.Rtc.Management.dll-Help.xml
4+
online version: https://learn.microsoft.com/powershell/module/teams/Get-CsMainlineAttendantQuestionAnswerFlow
5+
applicable: Microsoft Teams
6+
title: Get-CsMainlineAttendantQuestionAnswerFlow
7+
schema: 2.0.0
8+
ms.reviewer:
9+
manager: bulenteg
10+
author: tomkau
11+
ms.author: tomkau
12+
ms.reviewer: williamlooney
13+
---
14+
15+
# Get-CsMainlineAttendantQuestionAnswerFlow
16+
17+
## SYNOPSIS
18+
The Get-CsMainlineAttendantQuestionAnswerFlow cmdlet returns the identified Mainline attendant question and answer flow.
19+
20+
## SYNTAX
21+
22+
```
23+
Get-CsMainlineAttendantQuestionAnswerFlow [-Identity <Guid>] [-Tenant <Guid>] [-First <Int32>] [-Skip <Int32>] [-ExcludeContent <Switch>] [-Sort <String>] [-Descending <Switch>] [-NameFilter <String>] [<CommonParameters>]
24+
```
25+
26+
## DESCRIPTION
27+
The Get-CsMainlineAttendantQuestionAnswerFlow cmdlet lets you retrieve information about the Mainline attendant question and answer flows n your organization.
28+
29+
## EXAMPLES
30+
31+
### -------------------------- Example 1 --------------------------
32+
```
33+
Get-CsMainlineAttendantQuestionAnswerFlow
34+
```
35+
36+
This example gets the first 100 Mainline attendant question and answer flows in the organization.
37+
38+
### -------------------------- Example 2 --------------------------
39+
```
40+
Get-CsMainlineAttendantQuestionAnswerFlow -Identity 5e3a575e-1faa-49ff-83c2-5cf1c36c0e01
41+
```
42+
43+
This example gets the Mainline attendant question and answer flow with the identity 5e3a575e-1faa-49ff-83c2-5cf1c36c0e01. If no question and answer flow exists with the identity 5e3a575e-1faa-49ff-83c2-5cf1c36c0e01, then this example generates an error.
44+
45+
## PARAMETERS
46+
47+
### -Identity
48+
PARAMVALUE: Guid
49+
50+
```yaml
51+
Type: Guid
52+
Parameter Sets: (All)
53+
Aliases:
54+
applicable: Microsoft Teams
55+
56+
Required: False
57+
Position: Named
58+
Default value: None
59+
Accept pipeline input: False
60+
Accept wildcard characters: False
61+
```
62+
63+
### -Tenant
64+
PARAMVALUE: Guid
65+
66+
```yaml
67+
Type: Guid
68+
Parameter Sets: (All)
69+
Aliases:
70+
applicable: Microsoft Teams
71+
72+
Required: False
73+
Position: Named
74+
Default value: None
75+
Accept pipeline input: False
76+
Accept wildcard characters: False
77+
```
78+
79+
### -First
80+
The First parameter gets the first N appointment flows, up to a maximum of 100 at a time.
81+
When not specified, the default behavior is to return the first 100 question and answer flows. It is intended to be used in conjunction with the `-Skip` parameter for pagination purposes.
82+
If a number greater than 100 is supplied, the request will fail.
83+
84+
```yaml
85+
Type: Int32
86+
Parameter Sets: (All)
87+
Aliases:
88+
applicable: Microsoft Teams
89+
90+
Required: False
91+
Position: Named
92+
Default value: 100
93+
Accept pipeline input: False
94+
Accept wildcard characters: False
95+
```
96+
97+
### -Skip
98+
The Skip parameter skips the first N appointment flows. It is intended to be used in conjunction with the `-First` parameter for pagination purposes.
99+
100+
```yaml
101+
Type: Int32
102+
Parameter Sets: (All)
103+
Aliases:
104+
applicable: Microsoft Teams
105+
106+
Required: False
107+
Position: Named
108+
Default value: None
109+
Accept pipeline input: False
110+
Accept wildcard characters: False
111+
```
112+
113+
### -ExcludeContent
114+
The ExcludeContent parameter only displays the Name and Id of the question and answer flow.
115+
116+
```yaml
117+
Type: SwitchParameter
118+
Parameter Sets: (All)
119+
Aliases:
120+
applicable: Microsoft Teams
121+
122+
Required: False
123+
Position: Named
124+
Default value: None
125+
Accept pipeline input: False
126+
Accept wildcard characters: False
127+
```
128+
129+
### -Sort
130+
The Sort parameter specifies the property used to sort.
131+
132+
```yaml
133+
Type: String
134+
Parameter Sets: (All)
135+
Aliases:
136+
applicable: Microsoft Teams
137+
138+
Required: True
139+
Position: Named
140+
Default value: Name
141+
Accept pipeline input: False
142+
Accept wildcard characters: False
143+
```
144+
145+
### -Descending
146+
The Descending parameter sorts appointment booking flows in descending order
147+
148+
```yaml
149+
Type: SwitchParameter
150+
Parameter Sets: (All)
151+
Aliases:
152+
applicable: Microsoft Teams
153+
154+
Required: False
155+
Position: Named
156+
Default value: None
157+
Accept pipeline input: False
158+
Accept wildcard characters: False
159+
```
160+
161+
### -NameFilter
162+
The NameFilter parameter returns question and answer booking flows where the name contains specified string
163+
164+
```yaml
165+
Type: String
166+
Parameter Sets: (All)
167+
Aliases:
168+
applicable: Microsoft Teams
169+
170+
Required: True
171+
Position: Named
172+
Default value: None
173+
Accept pipeline input: False
174+
Accept wildcard characters: False
175+
```
176+
177+
### CommonParameters
178+
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).
179+
180+
## INPUTS
181+
182+
### Identity
183+
Represents the unique identifier of a question and answer booking flow.
184+
185+
## OUTPUTS
186+
187+
### Microsoft.Rtc.Management.Hosted.CallQueue.Models.CallQueue
188+
189+
## NOTES
190+
191+
## RELATED LINKS
192+

0 commit comments

Comments
 (0)