Skip to content

Commit 0310c3e

Browse files
authored
Merge pull request MicrosoftDocs#7640 from get-itips/patch-344
Adding missing params
2 parents d045e45 + c64fb8a commit 0310c3e

File tree

1 file changed

+36
-3
lines changed

1 file changed

+36
-3
lines changed

skype/skype-ps/skype/New-CsCallQueue.md

Lines changed: 36 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,22 +22,23 @@ New-CsCallQueue -Name <String> [-AgentAlertTime <Int16>] [-AllowOptOut <Boolean>
2222
[-Tenant <Guid>] [-UseDefaultMusicOnHold <Boolean>] [-WelcomeMusicAudioFileId <Guid>] [-MusicOnHoldAudioFileId <Guid>]
2323
[-OverflowAction <Object>] [-OverflowActionTarget <Guid>] [-OverflowThreshold <Int16>]
2424
[-TimeoutAction <Object>] [-TimeoutActionTarget <Guid>] [-TimeoutThreshold <Int16>]
25-
[-RoutingMethod <Object>] [-PresenceBasedRouting <Boolean>] [-ConferenceMode <Boolean>] [-Users <List>] [-LanguageId <String>] [-LineUri <String>] [-OverflowSharedVoicemailTextToSpeechPrompt <String>] [-OverflowSharedVoicemailAudioFilePrompt <Guid>] [-EnableOverflowSharedVoicemailTranscription <Boolean>] [-TimeoutSharedVoicemailTextToSpeechPrompt <String>] [-TimeoutSharedVoicemailAudioFilePrompt <Guid>] [-EnableTimeoutSharedVoicemailTranscription <Boolean>] [<CommonParameters>]
25+
[-RoutingMethod <Object>] [-PresenceBasedRouting <Boolean>] [-ConferenceMode <Boolean>] [-Users <List>] [-LanguageId <String>] [-LineUri <String>] [-OverflowSharedVoicemailTextToSpeechPrompt <String>] [-OverflowSharedVoicemailAudioFilePrompt <Guid>] [-EnableOverflowSharedVoicemailTranscription <Boolean>] [-TimeoutSharedVoicemailTextToSpeechPrompt <String>] [-TimeoutSharedVoicemailAudioFilePrompt <Guid>] [-EnableTimeoutSharedVoicemailTranscription <Boolean>]
26+
[-ChannelId <String>] [-ChannelUserObjectId <Guid>] [<CommonParameters>]
2627
```
2728

2829
## DESCRIPTION
2930
The New-CsCallQueue cmdlet creates a new Call Queue.
3031

3132
## EXAMPLES
3233

33-
### -------------------------- Example 1 --------------------------
34+
### Example 1
3435
```
3536
New-CsCallQueue -Name "Help Desk" -UseDefaultMusicOnHold $true
3637
```
3738

3839
This example creates a Call Queue for the organization named "Help Desk" using default music on hold.
3940

40-
### -------------------------- Example 2 --------------------------
41+
### Example 2
4142
```
4243
New-CsCallQueue -Name "Help desk" -RoutingMethod Attendant -DistributionLists @("8521b0e3-51bd-4a4b-a8d6-b219a77a0a6a", "868dccd8-d723-4b4f-8d74-ab59e207c357") -AllowOptOut $false -AgentAlertTime 30 -OverflowThreshold 15 -OverflowAction Forward -OverflowActionTarget 7fd04db1-1c8e-4fdf-9af5-031514ba1358 -TimeoutThreshold 30 -TimeoutAction Disconnect -MusicOnHoldAudioFileId 1e81adaf-7c3e-4db1-9d61-5d135abb1bcc -WelcomeMusicAudioFileId 0b31bbe5-e2a0-4117-9b6f-956bca6023f8
4344
@@ -477,6 +478,38 @@ Accept pipeline input: False
477478
Accept wildcard characters: False
478479
```
479480
481+
### -ChannelId
482+
Id of the channel to connect a call queue to.
483+
484+
```yaml
485+
Type: String
486+
Parameter Sets: (All)
487+
Aliases:
488+
Applicable: Skype for Business Online
489+
490+
Required: False
491+
Position: Named
492+
Default value: None
493+
Accept pipeline input: False
494+
Accept wildcard characters: False
495+
```
496+
497+
### -ChannelUserObjectId
498+
Guid should contain 32 digits with 4 dashes (xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx).
499+
500+
```yaml
501+
Type: Guid
502+
Parameter Sets: (All)
503+
Aliases:
504+
Applicable: Skype for Business Online
505+
506+
Required: False
507+
Position: Named
508+
Default value: None
509+
Accept pipeline input: False
510+
Accept wildcard characters: False
511+
```
512+
480513
### CommonParameters
481514
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).`
482515

0 commit comments

Comments
 (0)