Skip to content

Commit 4f6f9a2

Browse files
authored
Update Get-CsPersonalAttendantSettings.md
Updating for missing -InputObject parameter
1 parent 0387860 commit 4f6f9a2

File tree

1 file changed

+43
-6
lines changed

1 file changed

+43
-6
lines changed

teams/teams-ps/MicrosoftTeams/Get-CsPersonalAttendantSettings.md

Lines changed: 43 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ This cmdlet will show personal attendant settings for a user.
2222
## SYNTAX
2323

2424
```
25-
Get-CsPersonalAttendantSettings -Identity <String> [<CommonParameters>]
25+
Get-CsPersonalAttendantSettings [-Identity <String>] [-InputObject <IConfigApiBasedCmdletsIdentity>] [<CommonParameters>]
2626
```
2727

2828
## DESCRIPTION
@@ -54,7 +54,29 @@ IsAutomaticRecordingEnabled : False
5454
This example shows that [email protected] has personal attendant enabled (personal attendant communicates in English). Personal attendant will refer to its owner as User1.
5555
Personal attendant is only enabled for inbound Teams calls from the user's domain. Additional capabilities are turned off.
5656

57-
### Example 2
57+
Example 2
58+
```
59+
Get-CsPersonalAttendantSettings -InputObject @{ UserId = "[email protected]"; }
60+
```
61+
```outbput
62+
IsPersonalAttendantEnabled : True
63+
DefaultLanguage : en-US
64+
DefaultVoice : Female
65+
CalleeName : User1
66+
DefaultTone : Formal
67+
IsBookingCalendarEnabled : False
68+
IsNonContactCallbackEnabled : False
69+
IsCallScreeningEnabled : False
70+
AllowInboundInternalCalls : True
71+
AllowInboundFederatedCalls : False
72+
AllowInboundPSTNCalls : False
73+
IsAutomaticTranscriptionEnabled : False
74+
IsAutomaticRecordingEnabled : False
75+
```
76+
77+
This example returns same output as Example 1 but fetched using identity parameter.
78+
79+
### Example 3
5880
```
5981
Get-CsPersonalAttendantSettings -Identity [email protected]
6082
```
@@ -77,7 +99,7 @@ IsAutomaticRecordingEnabled : False
7799
This example shows that [email protected] has personal attendant enabled. In addition to previously mentioned capabilities, personal attendant is able to access personal bookings calendar,
78100
fetch the user's availability and schedule callbacks on behalf of the user. Calendar operations are enabled for all incoming callers. user1 must specify the bookings link in Teams Personal Attendant settings.
79101

80-
### Example 3
102+
### Example 4
81103
```
82104
Get-CsPersonalAttendantSettings -Identity [email protected]
83105
```
@@ -99,7 +121,7 @@ IsAutomaticRecordingEnabled : False
99121

100122
This example shows that [email protected] has personal attendant enabled. In addition to previously mentioned capabilities, personal attendant is enabled for all incoming calls: the user's domain, other domains and PSTN.
101123

102-
### Example 4
124+
### Example 5
103125
```
104126
Get-CsPersonalAttendantSettings -Identity [email protected]
105127
```
@@ -121,7 +143,7 @@ IsAutomaticRecordingEnabled : False
121143

122144
This example shows that [email protected] has personal attendant enabled. In addition to previously mentioned capabilities, personal attendant is enabled to evaluate the call's context and pass the info to the user.
123145

124-
### Example 5
146+
### Example 6
125147
```
126148
Get-CsPersonalAttendantSettings -Identity [email protected]
127149
```
@@ -143,7 +165,7 @@ IsAutomaticRecordingEnabled : True
143165

144166
This example shows that [email protected] has personal attendant enabled. In addition to previously mentioned capabilities, personal attendant is automatically storing call transcription and recording.
145167

146-
### Example 6
168+
### Example 7
147169
```
148170
Get-CsPersonalAttendantSettings -Identity [email protected]
149171
```
@@ -182,6 +204,21 @@ Accept pipeline input: False
182204
Accept wildcard characters: False
183205
```
184206
207+
### -InputObject
208+
The Identity parameter.
209+
210+
```yaml
211+
Type: IConfigApiBasedCmdletsIdentity
212+
Parameter Sets: (All)
213+
Aliases:
214+
215+
Required: True
216+
Position: Named
217+
Default value: None
218+
Accept pipeline input: True (ByValue)
219+
Accept wildcard characters: False
220+
```
221+
185222
### CommonParameters
186223
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).
187224

0 commit comments

Comments
 (0)