SCIM provisioning
Zulip has beta support for user provisioning and deprovisioning via the SCIM protocol. In SCIM, a third-party SCIM Identity Provider (IdP) acts as the SCIM client, connecting to the service provider (your Zulip server).
See the SCIM help center page for documentation on SCIM in Zulip Cloud as well as detailed documentation for how to configure some SCIM IdP providers.
Synchronizing groups via SCIM is currently not supported.
Server configuration
Important
If you are using Docker, set SCIM_CONFIG via the
SETTING_SCIM_CONFIG environment variable; see
Compose: Providing settings via environment.
The Zulip server-side configuration is straightforward:
Pick a client name for your SCIM client. This name is internal to your Zulip configuration, so the name of your IdP provider is a good choice. We’ll use
oktain the examples below.Configure the Zulip server by adding a
SCIM_CONFIGblock to your/etc/zulip/settings.py:SCIM_CONFIG = { "subdomain": { "bearer_token": "<secret token>", "scim_client_name": "okta", "name_formatted_included": False, } }
The
bearer_tokenshould contain a secure, secret token that you generate. You can use any secure password generation tools for this, such as theapgcommand included by default in some Linux distributions. For example,apg -m20will generate some passwords of minimum length 20 for you.Make sure to restart the server after editing your settings, by running
/home/zulip/deployments/current/scripts/restart-server.The SCIM IdP will authenticate its requests to your Zulip server by sending a
WWW-Authenticateheader like this:WWW-Authenticate: Bearer <secret token>.name_formatted_includedneeds to be set toFalsefor Okta. It tells Zulip whether the IdP includesname.formattedin itsUserrepresentation.Now you can proceed to configuring your SCIM IdP. Use the value
Bearer <secret token>using thebearer_tokenyou’ve generated earlier as theAPI tokenthat the SCIM IdP will ask for when configuring authentication details.
Additional options
To enable the creation of guest accounts without automatically subscribing them to any initial channels, add
"create_guests_without_streams": Trueto your client’s config dict inSCIM_CONFIG. This option is particularly useful for organizations that prefer to manually invite new guest users to the appropriate channels.Example configuration with the additional option:
SCIM_CONFIG = { "subdomain": { "bearer_token": "<secret token>", "scim_client_name": "okta", "name_formatted_included": False, "create_guests_without_streams": True, } }
To sync custom profile fields from the SCIM IdP, add
"custom_profile_field_map"to your client’s config dict. This is a dictionary mapping Zulip custom profile field names to SCIM attribute names. A custom profile field is represented for this feature by its user-facing name in lowercase with spaces replaced by underscores (e.g., “Phone number” is represented byphone_number).Example configuration with custom profile field syncing:
SCIM_CONFIG = { "subdomain": { "bearer_token": "<secret token>", "scim_client_name": "okta", "name_formatted_included": False, "custom_profile_field_map": { # Phone number "phone_number": "phoneNumber", # Birthday "birthday": "birthday", }, } }
With this configuration, when the SCIM IdP sends a
phoneNumberattribute in a User request, its value will be synced to the “Phone number” custom profile field in Zulip. The custom profile fields referenced must already exist in the Zulip organization settings.