azure active directory – send email to access package owner using logic app

Sorry, I won’t be able to build the full solution, but only be listing the steps needed to achieve it.

1 – You will need to register an app in Entra ID and give it permission to Graph. (Likely the EntitlementManagement.Read.All permission) (check other permissions here)

2 – In your logic app, you need to add a HTTP call to get a bearer token using the details of the application Id.
Use the bearer token in the authorization header for the next calls

3 – You will need to call entitlement management API’s to get the data you need

These endpoints use OData, you can apply filters to only get ones you are interested in.

Read more here: Source link