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 Entra ID
Microsoft Entra ID
A Microsoft Entra identity service that provides identity management and access control capabilities. Replaces Azure Active Directory.
19,464 questions
0 comments No comments
{count} votes

Accepted answer
  1. HarmeetSingh7172 4,811 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