Configure optional claims (Azure AD)

Before completing the SSO integration process, you need to edit the manifest to include the given_name and family_name claims. When a staff member uses SSO, these claims will provide their first and last name to Cloud.

To configure optional claims:

  1. Sign in to your Azure portal.

  2. Select Azure Active Directory.

  3. From the left-hand navigation pane, select App registrations.

  4. Select the correct app from the list.

  5. From the left-hand navigation pane, select Manifest.

  6. Edit the optionalClaims property as follows:

    "optionalClaims": {
    "idToken": [
    {
    "name": "given_name",
    "essential": true
    },
    {
    "name": "family_name",
    "essential": true
    }
    ]
    },

    Note: You must copy the information above exactly to correctly configure optional claims.

    The configured optionalClaims property.

  7. Select Save.

Next: Generate the Reply URL