Skip to content
Closed
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
53 changes: 48 additions & 5 deletions teams/teams-ps/MicrosoftTeams/Get-CsPersonalAttendantSettings.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,10 +21,16 @@ This cmdlet will show personal attendant settings for a user.

## SYNTAX

### Get (Default)
```
Get-CsPersonalAttendantSettings -Identity <String> [<CommonParameters>]
```

### GetViaIdentity
```
Get-CsUserCallingSettings -InputObject <IConfigApiBasedCmdletsIdentity> [<CommonParameters>]
```

## DESCRIPTION

This cmdlet shows the personal attendant settings for a user.
Expand Down Expand Up @@ -56,6 +62,28 @@ Personal attendant is only enabled for inbound Teams calls from the user's domai

### Example 2
```
Get-CsPersonalAttendantSettings -InputObject @{ UserId = "[email protected]"; }
```
```output
IsPersonalAttendantEnabled : True
DefaultLanguage : en-US
DefaultVoice : Female
CalleeName : User1
DefaultTone : Formal
IsBookingCalendarEnabled : False
IsNonContactCallbackEnabled : False
IsCallScreeningEnabled : False
AllowInboundInternalCalls : True
AllowInboundFederatedCalls : False
AllowInboundPSTNCalls : False
IsAutomaticTranscriptionEnabled : False
IsAutomaticRecordingEnabled : False
```

This example returns same output as Example 1 but fetched using identity parameter.

### Example 3
```
Get-CsPersonalAttendantSettings -Identity [email protected]
```
```output
Expand All @@ -77,7 +105,7 @@ IsAutomaticRecordingEnabled : False
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,
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.

### Example 3
### Example 4
```
Get-CsPersonalAttendantSettings -Identity [email protected]
```
Expand All @@ -99,7 +127,7 @@ IsAutomaticRecordingEnabled : False

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.

### Example 4
### Example 5
```
Get-CsPersonalAttendantSettings -Identity [email protected]
```
Expand All @@ -121,7 +149,7 @@ IsAutomaticRecordingEnabled : False

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.

### Example 5
### Example 6
```
Get-CsPersonalAttendantSettings -Identity [email protected]
```
Expand All @@ -143,7 +171,7 @@ IsAutomaticRecordingEnabled : True

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.

### Example 6
### Example 7
```
Get-CsPersonalAttendantSettings -Identity [email protected]
```
Expand Down Expand Up @@ -172,7 +200,7 @@ The Identity of the user to show personal attendant settings for. Can be specifi

```yaml
Type: System.String
Parameter Sets: (All)
Parameter Sets: Get
Aliases:

Required: True
Expand All @@ -182,6 +210,21 @@ Accept pipeline input: False
Accept wildcard characters: False
```

### -InputObject
The Identity parameter.

```yaml
Type: Microsoft.Teams.ConfigAPI.Cmdlets.Generated.Models.IConfigApiBasedCmdletsIdentity
Parameter Sets: GetViaIdentity
Aliases:

Required: True
Position: Named
Default value: None
Accept pipeline input: True (ByValue)
Accept wildcard characters: False
```

### CommonParameters
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).

Expand Down