Skip to main content
All CollectionsUser managementPermissions
Login with alias or as guest user
Login with alias or as guest user
Updated over a week ago

Introduction

Depending on your organization's needs, you may want to give external users access to the workspace via a guest account, or allow internal users to login using an alias instead of UPN. Both are possible, and in this article we explain how you can do this.

Note that there are some limitations for guest users:

  • Guest users cannot be imported manually, you must use SCIM (recommended) or the Azure AD synctool.

  • Guest users cannot use email or the calendar.

  • Guest users are not automatically assigned the correct permissions for applications. If you want to give access to the Documents app, for example, access must be granted in SharePoint under site permissions.

SSO app Manifest

As of v2.4.5 of our create environment script, this step is already performed when creating the environment.

First step is to make a change to the SSO app registration in Azure.

  1. Sign into the Azure Portal as a Global Admin.

  2. Go to App registrations.

  3. Select your Workspace SSO App Registration.

  4. Select Manifest.

  5. Look for the "optionalClaims": null, rule.
    ​​

    manifest1.png

  6. Replace it with:​

    "optionalClaims": { "idToken": [ { "name": "upn", "essential": false, "additionalProperties": ["include_externally_authenticated_upn"] } ] },
    manifest2.png

  7. Click Save.

You can now add guest users from your Entra ID to Workspace using SCIM or the Azure AD synctool. Guest users can log in with their own UPN and password.

To let users login with an alias, additional configuration is required. Continue reading below.


Email as alternate login ID (required for login via alias)

To ensure users can login with an alias, you must enable the Email as alternate login ID functionality in Microsoft Entra ID.

  1. Sign into the Azure Portal as a Global Admin.

  2. Go to Microsoft Entra ID > Microsoft Entra Connect > Connect Sync.

  3. Under User Sign-In, click Email as alternate loginID.​

  4. Check the Email as an alternate login ID checkbox and click Save.

  5. Wait for the policy to take effect. We have no control over how long this takes.

Did this answer your question?