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}'
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.