Office 360 Graph API

Kasper Frederiksen 21 Reputation points
2022-11-16T10:57:11.92+00:00

The API call GET:/v1.0/applications/{application-id} will show the detail of the Graph App that is registered on the Azure Tenant.

The JSON response shows App permissions as:

  "requiredResourceAccess":[  
    {  
      "resourceAppId":"<id>",  
      "resourceAccess":[  
        {"id":"<id>","type":"Role"}, ...  
      ]  
    }  
  ]  

This only shows id and type. I need to know the Permission Name and Status. This will allow verification that this Graph App has been correctly configured.

Is there an API call that will fetch additional info on the resourceAccess assigned to an App?

Microsoft Security | Microsoft Entra | Microsoft Entra ID
0 comments No comments
{count} votes

Answer accepted by question author
  1. HarmeetSingh7172 4,831 Reputation points
    2022-11-16T23:04:17.917+00:00

    Hello @Kasper Frederiksen

    Thanks for reaching out!

    As per the documentation, resourceAccess property of the requiredResourceAccess resource type only supports resourceAccess ID and resourceAccess Type as a API response for both v1.0 and beta.

    Screenshot for quick reference:

    261183-resourceaccess10.png

    Hope this helps.

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

    1 person found this answer helpful.
    0 comments No comments

1 additional answer

Sort by: Most helpful
  1. Kasper Frederiksen 21 Reputation points
    2022-11-17T07:31:56.317+00:00

    Thanks.
    We will find another way to validate App setup that does not involve the API

    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.