Reputation: 929
This is more of an 'Is this possible' question. A developer on the team suggested using Azure AD for user management, but one of the requirements is that the app admin be able to add/manage user access through the application without having to go to the Azure Portal.
So the question is, is the Graph API (or some other mechanism) full featured enough to replace the portal (at least for basic user set up and management) and allow all actions to be done from the application UI?
Thanks.
Upvotes: 0
Views: 172
Reputation: 136206
Simple answer to your question is Yes. Graph API can be used to manage users and their access to applications instead of using Azure Portal. In fact, Azure Portal itself makes use of Graph API to perform these operations.
You may also need to use Azure REST API
if you're planning on managing Azure resources as well through this custom application especially Authorization
APIs if you want to manage access to Azure resources (Azure Role-based access control) through your application.
Upvotes: 1