Share via

Teams Admin alert

2025-08-04T07:28:42.1+00:00

While evaluating this configuration, custom app uploads are restricted, but users can still create and submit bots via Power Virtual Agents. These submissions appear in the Teams admin center as “Pending approval,” where admins can approve or reject them.

My concern is how Teams admins are notified of new submissions without checking the portal manually. I’m also looking for a way to list all submitted apps using PowerShell or a script.

Microsoft Teams | Development
Microsoft Teams | Development

Building, integrating, or customizing apps and workflows within Microsoft Teams using developer tools and APIs

0 comments No comments

Answer accepted by question author

Steven-N 25,305 Reputation points Microsoft External Staff Moderator
2025-08-04T09:56:51.5133333+00:00

Hi 

Thanks for reaching out to Microsoft Q&A forum support 

Based on your description, I think you can follow this instruction to fulfill your concern 

You can activate the notification rules when the app was submitted in Teams admin portal: 

  • **Navigate to Notification & Alert > App Submission > configure and active   **

User's imageUser's image

About list all the Team custom Apps by Graph or PowerShell, you read the instruction here: 

Hope my answer will help you


If the answer is helpful, please click "Accept Answer" and kindly upvote it. If you have extra questions about this answer, please click "Comment".     

Note: Please follow the steps in our documentation to enable e-mail notifications if you want to receive the related email notification for this thread.

Was this answer helpful?

1 person found this answer helpful.

1 additional answer

Sort by: Most helpful
  1. Sayali-MSFT 5,936 Reputation points Microsoft External Staff Moderator
    2025-08-04T08:41:42.0566667+00:00

    Hello Titus Tolbert (Sr dev Operation, Hoka corp) ,
    Currently, Microsoft Teams does not automatically notify admins (via email or Teams message) when new custom apps or Power Virtual Agents bots are submitted for approval. Admins must manually check the Teams admin center for pending submissions.

    For listing all submitted apps (including Power Virtual Agents bots) via PowerShell or script:

    You can use Microsoft Graph PowerShell to list Teams app submissions:
    Using Microsoft Graph PowerShell:

    # Install the Graph Teams module if not already installed
    
    Install-Module Microsoft.Graph.Teams
    
    # Connect to Graph
    
    Connect-MgGraph -Scopes AppCatalog.Read.All
    
    # List all Teams apps in the tenant app catalog (including submitted apps)
    
    Get-MgAppCatalogTeamApp
    
    

    This will list all apps, including those pending approval. You may need to filter by status or review the output for pending apps.

    Was this answer helpful?

    0 comments No comments

Your answer

Answers can be marked as 'Accepted' by the question author and 'Recommended' by moderators, which helps users know the answer solved the author's problem.