SSO Application Details

Sanjay Bhakuni - admin 80 Reputation points
2024-06-25T15:30:19.7933333+00:00

I have list contains the applications as well as the integrations, please help me in identifying out of these 304 applications in the list, how many are the actual SSO applications, and which are the integrations.

In other words, how i can know the applications are SSO applications.

Microsoft Entra ID
Microsoft Entra ID
A Microsoft Entra identity service that provides identity management and access control capabilities. Replaces Azure Active Directory.
20,274 questions
{count} votes

1 answer

Sort by: Most helpful
  1. Marilee Turscak-MSFT 35,826 Reputation points Microsoft Employee
    2024-06-25T22:16:31.6433333+00:00

    Hi @Sanjay Bhakuni - admin ,

    You can use Microsoft Graph to query SSO-enabled applications and filter by the preferredSingleSignOnMode (password, saml, notSupported, and oidc).

    User's image

    For example, to get all SSO-enabled SAML applications, you can follow these steps:

    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.

    Let me know if this helps and if you run into any issues.

    If the information helped you, please Accept the answer. This will help us as well as others in the community who may be researching similar questions.

    0 comments No comments