Skip to content

Commit d36dd9c

Browse files
Merge pull request #12459 from michelle-paradis/patch-2
Create Update-M365UnifiedCustomPendingApp Docs
2 parents 293b5da + 8a93552 commit d36dd9c

File tree

2 files changed

+93
-0
lines changed

2 files changed

+93
-0
lines changed
Lines changed: 92 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,92 @@
1+
---
2+
external help file: Microsoft.Teams.PowerShell.TeamsCmdlets.dll-Help.xml
3+
Module Name: MicrosoftTeams
4+
online version: https://docs.microsoft.com/powershell/module/teams/Update-M365UnifiedCustomPendingApp
5+
applicable: Microsoft Teams
6+
title: Update-M365UnifiedCustomPendingApp
7+
author: michelle-paradis
8+
ms.author: mparadis
9+
manager: swmerchant
10+
ms.date: 01/20/2025
11+
schema: 2.0.0
12+
---
13+
14+
# Update-M365UnifiedCustomPendingApp
15+
16+
## SYNOPSIS
17+
18+
This cmdlet updates the review status for a custom Microsoft Teams app that is pending review from an IT Admin.
19+
20+
## SYNTAX
21+
22+
```powershell
23+
Update-M365UnifiedCustomPendingApp -Id <String> -ReviewStatus <String>
24+
```
25+
26+
## DESCRIPTION
27+
28+
This cmdlet allows administrators to reject or publish custom Microsoft Teams apps that are pending review from an IT Admin.
29+
30+
## EXAMPLES
31+
32+
### Example 1
33+
34+
```powershell
35+
PS C:\> Update-M365UnifiedCustomPendingApp -Id 4c4ec2e8-4a2c-4bce-8d8f-00fc664a4e5b -ReviewStatus Published
36+
```
37+
Updates the review status for the custom pending app with App ID 4c4ec2e8-4a2c-4bce-8d8f-00fc664a4e5b to Published.
38+
39+
### Example 2
40+
41+
```powershell
42+
PS C:\> Update-M365UnifiedCustomPendingApp -Id 4c4ec2e8-4a2c-4bce-8d8f-00fc664a4e5b -ReviewStatus Rejected
43+
```
44+
Updates the review status for the custom pending app with App ID 4c4ec2e8-4a2c-4bce-8d8f-00fc664a4e5b to Rejected.
45+
46+
## PARAMETERS
47+
48+
### Id
49+
50+
Application ID of the Teams app.
51+
52+
```yaml
53+
Type: String
54+
Parameter Sets: (All)
55+
Aliases:
56+
57+
Required: True
58+
Position: Named
59+
Default value: None
60+
Accept pipeline input: False
61+
Accept wildcard characters: False
62+
```
63+
64+
### ReviewStatus
65+
66+
The review status of the Teams app.
67+
68+
```yaml
69+
Type: String
70+
Parameter Sets: (Published, Rejected)
71+
Aliases:
72+
73+
Required: True
74+
Position: Named
75+
Default value: None
76+
Accept pipeline input: False
77+
Accept wildcard characters: False
78+
```
79+
80+
### CommonParameters
81+
82+
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).
83+
84+
## INPUTS
85+
86+
### None
87+
88+
## OUTPUTS
89+
90+
### System.Object
91+
92+
## NOTES

teams/teams-ps/teams/teams.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -543,4 +543,5 @@ The following cmdlet references are for Microsoft Teams.
543543
### [Update-CsTeamsShiftsConnection](Update-CsTeamsShiftsConnection.md)
544544
### [Update-CsTeamsShiftsConnectionInstance](Update-CsTeamsShiftsConnectionInstance.md)
545545
### [Update-CsTeamTemplate](Update-CsTeamTemplate.md)
546+
### [Update-M365UnifiedCustomPendingApp](Update-M365UnifiedCustomPendingApp.md)
546547
### [Update-TeamsAppInstallation](Update-TeamsAppInstallation.md)

0 commit comments

Comments
 (0)