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
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
+
117
215
### CommonParameters
118
216
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