Skip to main content
University Header
Tutorial

Configuring Microsoft Entra ID (Azure AD) SSO

  • April 30, 2025
  • 0 replies
  • 1256 views

Rachel Nielsen
Forum|alt.badge.img+2

This guide outlines the steps to configure Single Sign-On (SSO) with Microsoft Entra ID (Azure AD) for Qualified. Follow these instructions to streamline authentication for your users and enhance security.

Prerequisites

  1. A Microsoft Entra subscription and at least the Cloud Application Administrator role.

  2. Access to Qualified’s Enterprise Single Sign-On and the Admin user role.

  3. Your organization’s Company ID from Qualified.

  4. A basic understanding of SAML 2.0 configuration.

 

Steps to Configure Microsoft Entra ID SSO

Step 1: Set up in Qualified

  1. Log in to your Qualified Admin account.

  2. Navigate to Settings → Organization → Single Sign-On.

  3. Select Azure AD (SAML 2.0) from the dropdown menu.

  4. Copy your Company ID.

 

  1. Create your SAML Assertion Consumer Service (ACS) URL and store it somewhere temporarily to be used in a later step below: https://app.qualified.com/auth/saml/[PASTE_YOUR_COMPANY_ID_HERE]

Step 2: Configure in Microsoft Entra

  1. Sign in to the Microsoft Entra admin center with at least a Cloud Application Administrator role. 

  2. Create a new enterprise app for Qualified

    • Navigate to Identity → Applications → Enterprise applications.

    • Select New application and click Create your own application.

    • Name the app “Qualified”, select Integrate any other application you don’t find in the gallery (Non-gallery), then click Create.

  3. Once created, use the image below for the app’s logo:

 

  1. Assign yourself as a user for the application.

  2. Configure Single Sign-On:

    • Select SAML as the SSO method.

    • In Basic SAML Configuration, enter

      • Identifier (Entity ID): https://app.qualified.com

      • Reply URL (ACS URL): Your custom SAML ACS URL with the Company ID from Qualified: https://app.qualified.com/auth/saml/[PASTE_YOUR_COMPANY_ID_HERE]

    • Save your configuration.

  3. Configure Attributes & Claims:

    • Delete default attributes except Unique User Identifier (Name ID).

    • Add new claims:

      • first_name: user.givenname

      • last_name: user.surname

      • saml_id: user.objectid

  1. Save your configuration

  2. Under SAML Signing Certificate, copy the App Federation Metadata URL.

Microsoft Entra documentation: Add an Enterprise Application & Create your own Application.

 

Step 3: Finalize SSO in Qualified

  1. Return to Settings → Organization → Single Sign-On in Qualified.

  2. Paste the App Federation Metadata URL into the required field.

  3. Click Save and then Verify Configuration to test the connection.

    •  If you encounter issues during verification, such as a failed connection or mismatch errors, double-check that the metadata URL matches exactly with the one provided in Microsoft Entra.

  4. Assign all existing Qualified users access to the new Qualified application in Microsoft Entra before enabling SSO.

  5. When ready, click Enable single sign-on for this org.

 

Enable SCIM Provisioning (Optional)

SCIM provisioning automates user creation, updates, and deactivation directly from Microsoft Entra. This step is optional but highly recommended for efficient user management.

Supported Provisioning Features

The following provisioning features are supported within Qualified provisioning of SSO users:

  • Push New Users: New users created in Microsoft Entra are automatically created in Qualified. When a user is provisioned, their name, profile (role), phone number, email, and timezone are synced to Qualified.

  • Push Profile Updates: Updates made to a user's email or profile in Microsoft Entra are pushed to Qualified.

  • Push User Deactivation: Deactivating a user in Microsoft Entra will deactivate the user in Qualified. This removes their login access but retains their information.

  • Reactivate Users: User accounts can be reactivated in Qualified directly from Microsoft Entra.

 

Using Custom User Profiles with SCIM

In addition to the default roles, Qualified's User Profiles feature allows you to create custom permission sets. You can sync these custom profiles via SCIM by creating new App Roles in Microsoft Entra that correspond to the profile's unique API Name in Qualified.

For full details on creating custom profiles and finding their API Name, please see our main University article: How to manage users in Qualified.

 

Steps to Enable SCIM Provisioning

Step 1: In Microsoft Entra, create App Roles for the Qualified application:

  1. Sign in to the Microsoft Entra admin center

  2. Navigate to Identity → Applications → App registrations and select the Qualified application.

  3. Under Manage, select App roles and then click Create app role.

 

  1. In the Create app role pane, you will configure roles that map to your Qualified User Profiles. By default, you should create the following three roles:

    • Display Name: Qualified Admin

      • Allowed Member Types: Users/Groups

      • Value: admin (case sensitive)

      • Description: Qualified Admins have full access.

    • Display Name: Qualified Chat

      • Allowed Member Types: Users/Groups

      • Value: chat (case sensitive)

      • Description: Reps engage in chat and meetings.

    • Display Name: Qualified Meetings

      • Allowed Member Types: Users/Groups

      • Value: meetings (case sensitive)

      • Description: Meetings users have limited access.

  2. To use a custom profile, create an additional app role. Use the API Name from your custom profile in Qualified as the Value here. For example:

    • Display Name: Qualified Sales Manager

      • Allowed Member Types: Users/Groups

      • Value: sales_manager (This must exactly match the API Name in Qualified)

      • Description: Custom profile for sales managers.

  3. Ensure each app role is enabled and click Apply.

Microsoft Entra documentation: Add App Roles to your Application

For full details on creating custom profiles and finding their API Name, please see our main University article: How to manage users in Qualified.

 

Step 2: In Qualified, collect your API URL and Bearer Token:

  1. Go to Settings → Organization → Single Sign-On.

  2. Toggle on SCIM Enabled.

  3. Copy the API URL and Bearer Token.

 

Step 3: In Microsoft Entra, complete SCIM Provisioning set up:

  1. Return to the Microsoft Entra admin center.

  2. Navigate to the Enterprise Applications section and select your Qualified app.

  3. Open the Provisioning tab.

  4. Under Admin Credentials, paste the API URL and Bearer Token from Qualified.

  5. Click Test Connection to verify the integration.

  6. Expand Mappings, and select Provision Microsoft Entra ID Users to edit the user attribute mappings.

  7. Ensure the standard attributes match the following table. You will then add the final roles attribute as a custom expression in the next step.

customappsso Attribute Microsoft Entra ID Attribute Matching Precedence
userName userPrincipalName 1
active Switch([IsSoftDeleted], , "False", "True", "True", "False")      
title jobTitle  
name.givenName givenName  
name.familyName familyName  
phoneNumbers[type eq "work"].value telephoneNumber  
externalId objectId  
roles[primary eq "True"].value (custom expression)  
  1. Adding the Custom Role Expression: The roles attribute requires a custom expression to map correctly. Follow these steps carefully:

    • In the Attribute Mapping section, click Add New Mapping.

    • Set the Mapping type to Expression.

    • For the Expression, copy and paste the following base expression:
      Switch( ToLower(SingleAppRoleAssignment([appRoleAssignments])), "meetings", "qualified meetings", "meetings", "qualified admin", "admin", "qualified chat", "chat" )

    • For the Target attribute, select roles[primary eq "True"].value.

    • Click Ok to save the new mapping.

      Heads up! To sync custom profiles, you must add a new line for each one inside the expression.

      You will add a new line for each custom profile you want to sync. The format is "Entra App Role Value", "Qualified Profile API Name",.

      For example, if you created a "Sales Manager" App Role in Entra with the value qualified sales manager, and the corresponding API Name in Qualified is sales_manager, your new expression would be:

      Switch( ToLower(SingleAppRoleAssignment([appRoleAssignments])), "meetings", "qualified sales manager", "sales_manager", "qualified meetings", "meetings", "qualified admin", "admin", "qualified chat", "chat" )

Microsoft Entra documentation: Provisioning a role to a SCIM app and Reference for writing expressions for attribute mappings: Switch

 

Step 4: Finalize and Test

  1. Return to the Mappings screen and Disable the Provision Microsoft Entra ID Groups mapping, as Qualified does not support Group mappings at this time.

  2. Save your settings and enable Provisioning.

  3. Add a test user in Microsoft Entra ID and verify that the user is created in Qualified with the correct attributes and profile.

 

Binding Email Process for Existing Users

After enabling SSO, all existing Qualified users receive an email from app@qualified.com with a unique binding link.

 

Users must click the link within 72 hours to bind their Qualified account to their Microsoft Account. If the binding link expires, an admin can resend it from Settings → Organization → Users.

 

 

Adding New Users

With SCIM Provisioning Enabled

A Microsoft Entra user with at least a Cloud Application Administrator role will need to assign the user to the Qualified application.

Microsoft Entra documentation: Assign Users and Groups to an Application

Without SCIM Provisioning

If your company does not have SCIM Provisioning enabled, then you’ll follow the steps below to add new users to Qualified: 

  1. Assign Users in Microsoft Entra: A Microsoft Entra user with at least a Cloud Application Administrator role will need to assign the user to the Qualified application: Assign Users and Groups to an Application

  2. Invite Users in Qualified: Invite users from  Settings → Organization → Users in Qualified: Provisioning Users in Qualified

  3. User Accepts Invite: Invited users will receive an email with a button to link their account and access Qualified. 

 

Disconnecting SSO

If you'd like to disconnect your company’s SSO, you can do so at any time.

  1. Go to Settings → Organization → Single Sign-On 

  2. Click Disable SSO for this Team.

  3. Users will receive an email to create a new password and log in using their email addresses.