Reputation: 21
I have a multi-tenant Web API application(created through Ibiza AAD UX) that never shows up in other AAD tenants for granting permissions. I made sure to mark "Multi-tenanted = Yes" during property definition of the AAD application.
Any help to troubleshoot this will be appreciated.
Thanks, Rao
Upvotes: 1
Views: 87
Reputation: 3237
When a new user in another tenant signs into the multi-tenant app and consents, a service principal (not an app object) is provisioned into the tenant. The Azure Portal (as you said Ibiza UX) App Registrations blade represents application objects.
You can checkout the Service Principals in a tenant using a couple of techniques, but the easiest is through the Enterprise Apps blade in the Azure Portal or using the Microsoft Graph Explorer and running a query on /servicePrincipals.
Upvotes: 1