Skip to content

Commit 458fc1a

Browse files
authored
Update Get-CsMainlineAttendantFlow.md
Adding additional parameters
1 parent afe0f9d commit 458fc1a

File tree

1 file changed

+99
-1
lines changed

1 file changed

+99
-1
lines changed

teams/teams-ps/MicrosoftTeams/Get-CsMainlineAttendantFlow.md

Lines changed: 99 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ The Get-CsMainlineAttendantFlow cmdlet returns information about the Mainline At
1919
## SYNTAX
2020

2121
```
22-
Get-CsMainlineAttendantFlow [-ConfigurationId <String>] [-Type <String>] [-Identity <String>] [-Tenant <Guid>] [<CommonParameters>]
22+
Get-CsMainlineAttendantFlow [-ConfigurationId <String>] [-Type <String>] [-Identity <String>] [-First <UInt32>] [-Skip <UInt32>] [-NameFilter <String>] [-SortBy <String>] [-Descending] [-IncludeStatus] [-ExcludeContent] [-Tenant <Guid>] [<CommonParameters>]
2323
```
2424

2525
## DESCRIPTION
@@ -114,6 +114,104 @@ Accept pipeline input: False
114114
Accept wildcard characters: False
115115
```
116116
117+
### -First
118+
119+
The First parameter gets the first N appointment flows, up to a maximum of 100 at a time.
120+
When not specified, the default behavior is to return the first 100 appointment flows. It is intended to be used in conjunction with the `-Skip` parameter for pagination purposes.
121+
If a number greater than 100 is supplied, the request will fail.
122+
123+
```yaml
124+
Type: Int32
125+
Parameter Sets: (All)
126+
Aliases:
127+
128+
Required: False
129+
Position: Named
130+
Default value: 100
131+
Accept pipeline input: False
132+
Accept wildcard characters: False
133+
```
134+
135+
### -Skip
136+
137+
The Skip parameter skips the first N appointment flows. It is intended to be used in conjunction with the `-First` parameter for pagination purposes.
138+
139+
```yaml
140+
Type: Int32
141+
Parameter Sets: (All)
142+
Aliases:
143+
144+
Required: False
145+
Position: Named
146+
Default value: None
147+
Accept pipeline input: False
148+
Accept wildcard characters: False
149+
```
150+
151+
### -ExcludeContent
152+
153+
The ExcludeContent parameter only displays the Name and Id of the appointment flow.
154+
155+
```yaml
156+
Type: SwitchParameter
157+
Parameter Sets: (All)
158+
Aliases:
159+
160+
Required: False
161+
Position: Named
162+
Default value: None
163+
Accept pipeline input: False
164+
Accept wildcard characters: False
165+
```
166+
167+
### -SortBy
168+
169+
The SortBy parameter specifies the property used to sort.
170+
171+
```yaml
172+
Type: String
173+
Parameter Sets: (All)
174+
Aliases:
175+
176+
Required: True
177+
Position: Named
178+
Default value: Name
179+
Accept pipeline input: False
180+
Accept wildcard characters: False
181+
```
182+
183+
### -Descending
184+
185+
The Descending parameter sorts appointment booking flows in descending order
186+
187+
```yaml
188+
Type: SwitchParameter
189+
Parameter Sets: (All)
190+
Aliases:
191+
192+
Required: False
193+
Position: Named
194+
Default value: None
195+
Accept pipeline input: False
196+
Accept wildcard characters: False
197+
```
198+
199+
### -NameFilter
200+
201+
The NameFilter parameter returns appointment booking flows where the name contains specified string
202+
203+
```yaml
204+
Type: String
205+
Parameter Sets: (All)
206+
Aliases:
207+
208+
Required: True
209+
Position: Named
210+
Default value: None
211+
Accept pipeline input: False
212+
Accept wildcard characters: False
213+
```
214+
117215
### CommonParameters
118216
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).
119217

0 commit comments

Comments
 (0)