Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
27 commits
Select commit Hold shift + click to select a range
8af4c49
Create Get-M365UnifiedCustomPendingApps Docs
michelle-paradis Jan 14, 2025
bf03e33
Create Update-M365UnifiedCustomPendingApp Docs
michelle-paradis Jan 14, 2025
afbfbba
Update date, syntax, and description in Get-M365UnifiedCustomPendingApps
michelle-paradis Jan 14, 2025
7e42c64
Rename Get-M365UnifiedCustomPendingApps to markdown file
michelle-paradis Jan 14, 2025
1ea6cf1
Fix typos and update cmdlet documentation
michelle-paradis Jan 14, 2025
693240f
Convert Update-M365UnifiedCustomPendingApp to Markdown
michelle-paradis Jan 14, 2025
fbffc08
Update ms.author value in documentation
michelle-paradis Jan 14, 2025
435c4c1
Update ms.author value in documentation
michelle-paradis Jan 14, 2025
ec32f43
Merge branch 'main' into patch-1
aditisrivastava07 Jan 16, 2025
ec5dea1
Merge branch 'main' into patch-2
aditisrivastava07 Jan 16, 2025
9c05ed2
Fix RELATED LINKS section formatting
michelle-paradis Jan 16, 2025
207af22
Merge branch 'main' into patch-2
michelle-paradis Jan 16, 2025
cb38997
Fix formatting in Get-M365UnifiedCustomPendingApps.md
michelle-paradis Jan 16, 2025
abfb7ec
Merge branch 'main' into patch-1
michelle-paradis Jan 16, 2025
7a313d4
Update metadata and heading in documentation
michelle-paradis Jan 20, 2025
c09e890
Merge branch 'main' into patch-1
michelle-paradis Jan 23, 2025
b1a61ba
Merge branch 'main' into patch-2
michelle-paradis Jan 23, 2025
c91ba5c
Remove redundant sections in documentation
michelle-paradis Jan 23, 2025
7f747a3
Remove empty sections from documentation
michelle-paradis Jan 23, 2025
b321a57
Update teams.md
michelle-paradis Jan 23, 2025
28d754f
Add Get-M365UnifiedCustomPendingApps to documentation
michelle-paradis Jan 23, 2025
06d02fb
Update teams.md
michelle-paradis Jan 23, 2025
bff4d79
Update teams.md
michelle-paradis Jan 23, 2025
8a93552
Add NOTES section to documentation
michelle-paradis Jan 23, 2025
d36dd9c
Merge pull request #12459 from michelle-paradis/patch-2
Ruchika-mittal01 Jan 23, 2025
5746624
Merge branch 'main' into patch-1
padmagit77 Jan 23, 2025
5bc7dd3
Merge pull request #12458 from michelle-paradis/patch-1
padmagit77 Jan 23, 2025
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
77 changes: 77 additions & 0 deletions teams/teams-ps/teams/Get-M365UnifiedCustomPendingApps.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,77 @@
---
external help file: Microsoft.Teams.PowerShell.TeamsCmdlets.dll-Help.xml
Module Name: MicrosoftTeams
online version: https://docs.microsoft.com/powershell/module/teams/Get-M365UnifiedCustomPendingApps
applicable: Microsoft Teams
title: Get-M365UnifiedCustomPendingApps
author: michelle-paradis
ms.author: mparadis
manager: swmerchant
ms.date: 01/14/2025
schema: 2.0.0
---

# Get-M365UnifiedCustomPendingApps

## SYNOPSIS

This cmdlet returns all custom Microsoft Teams apps that are pending review from an IT Admin.

## SYNTAX

```powershell
Get-M365UnifiedCustomPendingApps [<CommonParameters>]
```

## DESCRIPTION

Get-M365UnifiedCustomPendingApps retrieves a complete list of all custom Microsoft Teams apps that are pending review, and their review statuses.

## EXAMPLES

### Example

```powershell
PS C:\> Get-M365UnifiedCustomPendingApps
```

Returns a complete list of all custom Microsoft Teams apps that are pending review, and their review statuses.

## PARAMETERS

### 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](http://go.microsoft.com/fwlink/?LinkID=113216).

## INPUTS

### None

## OUTPUTS

### System.Object

**Id**:
Application ID of the Teams app.

**ExternalId**:
External ID of the Teams app.

**Iteration**:
The Staged App Definition Etag of the app.

**CreatedBy**:
The User ID of the user that created the app.

**LastUpdateDateTime**:
The date and time the app was last updated.

**ReviewStatus**:
The review status of the app.
Values:

- PendingPublishing
- PendingUpdate

**Metadata**:
The metadata of the app.
92 changes: 92 additions & 0 deletions teams/teams-ps/teams/Update-M365UnifiedCustomPendingApp.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,92 @@
---
external help file: Microsoft.Teams.PowerShell.TeamsCmdlets.dll-Help.xml
Module Name: MicrosoftTeams
online version: https://docs.microsoft.com/powershell/module/teams/Update-M365UnifiedCustomPendingApp
applicable: Microsoft Teams
title: Update-M365UnifiedCustomPendingApp
author: michelle-paradis
ms.author: mparadis
manager: swmerchant
ms.date: 01/20/2025
schema: 2.0.0
---

# Update-M365UnifiedCustomPendingApp

## SYNOPSIS

This cmdlet updates the review status for a custom Microsoft Teams app that is pending review from an IT Admin.

## SYNTAX

```powershell
Update-M365UnifiedCustomPendingApp -Id <String> -ReviewStatus <String>
```

## DESCRIPTION

This cmdlet allows administrators to reject or publish custom Microsoft Teams apps that are pending review from an IT Admin.

## EXAMPLES

### Example 1

```powershell
PS C:\> Update-M365UnifiedCustomPendingApp -Id 4c4ec2e8-4a2c-4bce-8d8f-00fc664a4e5b -ReviewStatus Published
```
Updates the review status for the custom pending app with App ID 4c4ec2e8-4a2c-4bce-8d8f-00fc664a4e5b to Published.

### Example 2

```powershell
PS C:\> Update-M365UnifiedCustomPendingApp -Id 4c4ec2e8-4a2c-4bce-8d8f-00fc664a4e5b -ReviewStatus Rejected
```
Updates the review status for the custom pending app with App ID 4c4ec2e8-4a2c-4bce-8d8f-00fc664a4e5b to Rejected.

## PARAMETERS

### Id

Application ID of the Teams app.

```yaml
Type: String
Parameter Sets: (All)
Aliases:

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

### ReviewStatus

The review status of the Teams app.

```yaml
Type: String
Parameter Sets: (Published, Rejected)
Aliases:

Required: True
Position: Named
Default value: None
Accept pipeline input: False
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](http://go.microsoft.com/fwlink/?LinkID=113216).

## INPUTS

### None

## OUTPUTS

### System.Object

## NOTES
2 changes: 2 additions & 0 deletions teams/teams-ps/teams/teams.md
Original file line number Diff line number Diff line change
Expand Up @@ -170,6 +170,7 @@ The following cmdlet references are for Microsoft Teams.
### [Get-CsUserPolicyPackageRecommendation](Get-CsUserPolicyPackageRecommendation.md)
### [Get-CsVideoInteropServiceProvider](Get-CsVideoInteropServiceProvider.md)
### [Get-LicenseReportForChangeNotificationSubscription](Get-LicenseReportForChangeNotificationSubscription.md)
### [Get-M365UnifiedCustomPendingApps](Get-M365UnifiedCustomPendingApps.md)
### [Get-SharedWithTeam](Get-SharedWithTeam.md)
### [Get-SharedWithTeamUser](Get-SharedWithTeamUser.md)
### [Get-Team](Get-Team.md)
Expand Down Expand Up @@ -543,4 +544,5 @@ The following cmdlet references are for Microsoft Teams.
### [Update-CsTeamsShiftsConnection](Update-CsTeamsShiftsConnection.md)
### [Update-CsTeamsShiftsConnectionInstance](Update-CsTeamsShiftsConnectionInstance.md)
### [Update-CsTeamTemplate](Update-CsTeamTemplate.md)
### [Update-M365UnifiedCustomPendingApp](Update-M365UnifiedCustomPendingApp.md)
### [Update-TeamsAppInstallation](Update-TeamsAppInstallation.md)
Loading