Listing all Enterprise Applications configured for Single Sign-On

Sam Hall 46 Reputation points
2020-08-28T03:59:14.467+00:00

We have about 40-50 applications that we've configured with SSO. Mostly SAML. We've been relying on system administrators prefixing each Enterprise Application name so that we can actually find them in the large list. Is there a better way to find Enterprise Application we have created/configured, filtering out the Microsoft apps and all the 3rd party gallery templates?

Microsoft Entra ID
Microsoft Entra ID
A Microsoft Entra identity service that provides identity management and access control capabilities. Replaces Azure Active Directory.
19,466 questions
0 comments No comments
{count} vote

Accepted answer
  1. AmanpreetSingh-MSFT 56,306 Reputation points
    2020-08-28T05:04:37.067+00:00

    Hello @Sam Hall ,

    In order to find SAML enabled applications in your tenant, you need to use below graph call:

    1. Sign in to Graph Explorer using Application Administrator or Global Administrator account.
    2. Run GET https://graph.microsoft.com/v1.0/servicePrincipals?$filter=preferredSingleSignOnMode eq 'saml'&$select=appDisplayName,preferredSingleSignOnMode call.
    3. This will return all Application with SAML enabled. Please find below snip for your reference:

    108540-image.png


    Please "Accept the answer" if the information helped you. This will help us and others in the community as well.

    3 people found this answer helpful.

2 additional answers

Sort by: Most helpful
  1. Jesus Marin 1 Reputation point
    2021-08-06T14:36:50.953+00:00

    Hi,

    Might be obvious for you, but not for me, how can I get all the tags for applications, I'm trying to find applications that are configured as not visible to users

    0 comments No comments

  2. Dov Zelinger 1 Reputation point
    2021-10-13T10:27:56.497+00:00

    That us very simple: just remove the "&$select=appDisplayName,preferredSingleSignOnMode" from the query and you will get all properties

    0 comments No comments