Azure Portal - Missing registered personal applications

Tech N 5 Reputation points
2023-05-04T09:34:31.4266667+00:00

Hello,

Some registered applications are missing from the Azure Portal -> Applications from personal account :
https://portal.azure.com/#view/Microsoft_AAD_RegisteredApps/ApplicationsListBlade

These apps where previously registered thru the old portal few years ago : https://apps.dev.microsoft.com/#/appList ; They are used to access Microsoft Graph API (contacts, agendas, etc).

How can I access them ?
Thanks.

Microsoft Security | Microsoft Entra | Microsoft Entra ID
Microsoft Security | Microsoft Graph
{count} vote

1 answer

Sort by: Most helpful
  1. CarlZhao-MSFT 46,376 Reputation points
    2023-05-05T10:04:57.91+00:00

    Hi @Tech N

    You can call the /applications endpoint to list all applications in your organization:

    GET https://graph.microsoft.com/v1.0/applications
    

    You can also filter by the appId parameter:

    GET https://graph.microsoft.com/v1.0/applications?$filter=appId eq '{app id}'
    

    User's image

    Please note that if your application was created with an MSA account, then you need to log in with a personal account to obtain a personal user token:

    When calling this API using tokens issued for a personal Microsoft account, it will return the apps owned by the personal Microsoft account. The notion of organizations doesn't exist for personal Microsoft accounts. To list applications owned by a specific personal Microsoft account, this API requires the User.Read permission in addition to Application.Read.All or Application.ReadWrite.All.

    Hope this helps.

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


Your answer

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