Registering applications via Microsoft Graph API fails to display them under Enterprise Applications in Azure

Viewed 201

When a new application is registered using Microsoft's Graph API, it doesn't display when "Enterprise Applications" is used as the application type.

enter image description here

The only way to get these applications to show up is if I change the application type to "All Applications".

enter image description here

Can anyone explain what's going on here and provide a solution?

These applications are non-Microsoft applications so they should be showing up as an Enterprise Application.

1 Answers

I tested in my lab to register a application using Graph explorer API call. enter image description here

The thing I noticed is that when we create the an APP registration using it, has been registered in AD but not appearing in Enterprise Applications as the service principal is not created.

enter image description here

So after creating the Service Principal from Portal , it is shown in Enterprise application.

enter image description here

enter image description here

Related