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
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.
1 change: 1 addition & 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
Loading