Skip to content

Commit 41a164c

Browse files
authored
Update Get-CsCallQueue.md
Updating as we are now enforcing a return of a maximum of 100 CQs at a time.
1 parent 7e47fef commit 41a164c

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

teams/teams-ps/teams/Get-CsCallQueue.md

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ The Get-CsCallQueue cmdlet lets you retrieve information about the Call Queues i
3232
Get-CsCallQueue
3333
```
3434

35-
This example gets all Call Queues in the organization.
35+
This example gets the first 100 Call Queues in the organization.
3636

3737
### -------------------------- Example 2 --------------------------
3838
```
@@ -76,7 +76,9 @@ Accept wildcard characters: False
7676
```
7777
7878
### -First
79-
The First parameter gets the first N Call Queues. The default behavior is to return the first 100 number of queues. It is intended to be used for pagination purposes.
79+
The First parameter gets the first N Call Queues, up to a maximum of 100 at a time.
80+
When not specified, the default behavior is to return the first 100 number of queues. It is intended to be used in conjunction with the `-Skip` parameter for pagination purposes.
81+
If a number greater than 100 is supplied, the request will fail.
8082

8183
```yaml
8284
Type: Int32
@@ -92,7 +94,7 @@ Accept wildcard characters: False
9294
```
9395

9496
### -Skip
95-
The Skip parameter skips the first N Call Queues. It is intended to be used for pagination purposes.
97+
The Skip parameter skips the first N Call Queues. It is intended to be used in conjunction with the `-First` parameter for pagination purposes.
9698

9799
```yaml
98100
Type: Int32

0 commit comments

Comments
 (0)