Skip to content

Commit 736455e

Browse files
authored
Update Get-CsAutoAttendant.md
1 parent 41a164c commit 736455e

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
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 AAs 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

0 commit comments

Comments
 (0)