Skip to content

Commit a79b2d6

Browse files
authored
Merge pull request #12730 from CLYVR/patch-41
Update Get-CsCallQueue.md
2 parents 7e47fef + 0e73fb6 commit a79b2d6

File tree

2 files changed

+10
-6
lines changed

2 files changed

+10
-6
lines changed

teams/teams-ps/teams/Get-CsAutoAttendant.md

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ The Get-CsAutoAttendant cmdlet returns information about the AAs in your organiz
3131
Get-CsAutoAttendant
3232
```
3333

34-
This example gets all AAs in the organization.
34+
This example gets the first 100 auto attendants in the organization.
3535

3636
### Example 2
3737
```powershell
@@ -91,7 +91,9 @@ Accept wildcard characters: False
9191
```
9292
9393
### -First
94-
The First parameter indicates the maximum number of auto attendants to retrieve as the result. It is intended to be used for pagination purposes.
94+
The First parameter gets the first N auto attendants, up to a maximum of 100 at a time.
95+
When not specified, the default behavior is to return the first 100 auto attendants. It is intended to be used in conjunction with the `-Skip` parameter for pagination purposes.
96+
If a number greater than 100 is supplied, the request will fail.
9597

9698
```yaml
9799
Type: System.UInt32
@@ -107,7 +109,7 @@ Accept wildcard characters: False
107109
```
108110

109111
### -Skip
110-
The Skip parameter indicates the number of initial auto attendants to skip in the result. It is intended to be used for pagination purposes.
112+
The Skip parameter skips the first N auto attendants. It is intended to be used in conjunction with the `-First` parameter for pagination purposes.
111113

112114
```yaml
113115
Type: System.UInt32

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 call 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)