Skip to content

Update Get-CsCallQueue.md #12730

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 7 commits into from
May 9, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 5 additions & 3 deletions teams/teams-ps/teams/Get-CsAutoAttendant.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ The Get-CsAutoAttendant cmdlet returns information about the AAs in your organiz
Get-CsAutoAttendant
```

This example gets all AAs in the organization.
This example gets the first 100 auto attendants in the organization.

### Example 2
```powershell
Expand Down Expand Up @@ -91,7 +91,9 @@ Accept wildcard characters: False
```

### -First
The First parameter indicates the maximum number of auto attendants to retrieve as the result. It is intended to be used for pagination purposes.
The First parameter gets the first N auto attendants, up to a maximum of 100 at a time.
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.
If a number greater than 100 is supplied, the request will fail.

```yaml
Type: System.UInt32
Expand All @@ -107,7 +109,7 @@ Accept wildcard characters: False
```

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

```yaml
Type: System.UInt32
Expand Down
8 changes: 5 additions & 3 deletions teams/teams-ps/teams/Get-CsCallQueue.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ The Get-CsCallQueue cmdlet lets you retrieve information about the Call Queues i
Get-CsCallQueue
```

This example gets all Call Queues in the organization.
This example gets the first 100 call queues in the organization.

### -------------------------- Example 2 --------------------------
```
Expand Down Expand Up @@ -76,7 +76,9 @@ Accept wildcard characters: False
```
### -First
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.
The First parameter gets the first N Call Queues, up to a maximum of 100 at a time.
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.
If a number greater than 100 is supplied, the request will fail.

```yaml
Type: Int32
Expand All @@ -92,7 +94,7 @@ Accept wildcard characters: False
```

### -Skip
The Skip parameter skips the first N Call Queues. It is intended to be used for pagination purposes.
The Skip parameter skips the first N call queues. It is intended to be used in conjunction with the `-First` parameter for pagination purposes.

```yaml
Type: Int32
Expand Down