Azure AD: I want to fetch delegated as well as application permissions/consent based on appId.
Asked
Active
Viewed 100 times
0
-
Is there any graph API which checks the permissions as per the Application Id? – Ashish Gautam Aug 05 '20 at 16:46
-
Please refer to this [similar question](https://stackoverflow.com/questions/61437748/is-there-a-way-to-get-list-of-admin-consent-requests-using-graph-api) it may help you – Sruthi J Aug 05 '20 at 17:06
-
Are you looking for programming or particular in Graph? – Sruthi J Aug 05 '20 at 20:02
-
@SruthiJ-MSFTIdentity yes I am looking for programming..want collect info like apps require different permissions and consent on the basis of application Id – Ashish Gautam Aug 06 '20 at 05:54
-
To Get all permissions granted to an app in Azure AD. Please refer to [this](https://gist.github.com/psignoret/9d73b00b377002456b24fcb808265c23) – Sruthi J Aug 06 '20 at 06:41
1 Answers
0
To Lists delegated permission grants (OAuth2PermissionGrants) and application permissions grants (AppRoleAssignments) granted to an app in Azure Ad. Please use this script

Sruthi J
- 1,524
- 1
- 5
- 8
-
Thanks, your link helped me to reach my goal, "https://graph.microsoft.com/v1.0/oauth2PermissionGrants?$filter=clientId eq '{ObjectId}'" – Ashish Gautam Aug 14 '20 at 06:41