Skip to content
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
4 changes: 2 additions & 2 deletions teams/teams-ps/MicrosoftTeams/Get-CsTagsTemplate.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ Retrieves the Tag templates in the tenant.

## SYNTAX
```
Get-CsTagsTemplate [-Identity <String>] [-Tenant <Guid>] [<CommonParameters>]
Get-CsTagsTemplate [-Id <String>] [-Tenant <Guid>] [<CommonParameters>]
```

## DESCRIPTION
Expand All @@ -33,7 +33,7 @@ The Get-CsTagTemplate cmdlet returns a list of all Tag templates in the tenant.

## PARAMETERS

### -Identity
### -Id
The unique identifier for the Tag template.

```yaml
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,9 @@ Use the New-CsComplianceRecordingForCallQueueTemplate cmdlet to create a Complia
## SYNTAX

```
New-CsComplianceRecordingForCallQueueTemplate -Name <String> -Description <String> -BotId <String>
New-CsComplianceRecordingForCallQueueTemplate -Name <String> -Description <String> -BotApplicationInstanceObjectId <String>
[-RequiredDuringCall <Boolean>] [-RequiredBeforeCall <Boolean>] [-CurrentInvitationCount <Int32>]
[-PairedApplication <String>] [<CommonParameters>]
[-PairedApplicationInstanceObjectId <String>] [<CommonParameters>]
```

## DESCRIPTION
Expand All @@ -34,16 +34,16 @@ Use the New-CsComplianceRecordingForCallQueueTemplate cmdlet to create a Complia

### Example 1
```
New-CsComplianceRecordingForCallQueueTemplate -Name "Customer Service" -Description "Required before/during call" -BotId 14732826-8206-42e3-b51e-6693e2abb698 -RequiredDuringCall $true -RequiredBeforeCall $true
New-CsComplianceRecordingForCallQueueTemplate -Name "Customer Service" -Description "Required before/during call" -BotApplicationInstanceObjectId 14732826-8206-42e3-b51e-6693e2abb698 -RequiredDuringCall $true -RequiredBeforeCall $true
```

This example creates a new Compliance Recording for Call Queue template.

## PARAMETERS

### -BotId
### -BotApplicationInstanceObjectId

The Application Instance Object Id of the compliance recording bot to invite.
The compliance recording bot's application instance object Id.

Use [Get-CsOnlineApplicationInstance](get-csonlineapplicationinstance.md) to get the `ObjectId`.

Expand Down Expand Up @@ -107,9 +107,9 @@ Accept pipeline input: False
Accept wildcard characters: False
```

### -PairedApplication
### -PairedApplicationInstanceObjectId

The PairedApplication parameter specifies the paired application for the call queue.
The PairedApplicationInstanceObjectId parameter specifies the paired compliance recording bot application object Id to invite to the call.

```yaml
Type: System.String
Expand Down
Loading