Skip to content

Legacy SCIM Gateway

INFO

This page documents the legacy version of the SCIM gateway, available in UNIFYBroker v5.3 and older. The gateway in this form is no longer available. The documentation for the current SCIM gateway can be found here: SCIM Gateway.

Overview

UNIFYBroker can act as a SCIM 2.0 server, enabling interactions with identity managers and cloud platforms using the SCIM 2.0 specification.

Usage

A SCIM gateway enables create/read/update/delete operations against the adapter entity contexts in UNIFYBroker using the SCIM 2.0 specification. For details on the specification, see rfc7643.

Configuration

In addition to the common gateway configuration shared by all gateways, the SCIM gateway requires the following by way of configuration:

gateway adapter configuration

gateway mapping configuration

NameSupports ReferencesDescription
User AdapternoThe target adapter that contains User objects.
Group AdapternoThe target adapter that contains Group objects.
AddressyesThe address that the endpoint is hosted on.
AudienceyesThe optional audience claim to validate. This value is provided by the service provider and is often of the form of a unique identifier. If provided, the authentication bearer token must contain an audience claim with this value.
TenantyesThe optional tenant claim to validate. This value is provided by the service provider, and is often part of the url for the directory, e.g. <a href="https://{tenant}.example.com/">https://{tenant}.example.com/</a>. If provided, the authentication bearer token must contain an tenant claim with this value.
User ID Lookup FieldnoThe field in the User Adapter to use when looking up the ID for references, e.g. for Manager and Members.
User mappingsnoSchema mapping between SCIM fields and Adapter fields for the User object.
Group mappingsnoSchema mapping between SCIM fields and Adapter fields for the Group object.

SCIM Attribute Mapping

The following tables details the mappings and the SCIM attribute path they get mapped to.

User

MappingSCIM Attribute Path
activeactive
externalIdexternalId
displayNamedisplayName
departmentdepartment
preferredLanguagepreferredLanguage
titletitle
usernameusername
managermanager
employeeNumberemployeeNumber
faxNumberphoneNumbers[type eq "fax"].value
givenNamename.givenName
workEmailemails[type eq "work"].value
mobilePhoneNumberphoneNumbers[type eq "mobile"].value
workPostalCodeaddresses[type eq "work"].postalCode
otherEmailemails[type eq "other"].value
otherAddressFormattedaddresses[type eq "other"].formatted
workStreetAddressaddresses[type eq "work"].streetAddress
familyNamename.familyName
workPhoneNumberphoneNumbers[type eq "work"].value
organizationurn:ietf:params:scim:schemas:extension:enterprise:2.0:User:organization
divisionurn:ietf:params:scim:schemas:extension:enterprise:2.0:User:division
workLocalityaddresses[type eq "work"].locality
workCountryaddresses[type eq "work"].country
workRegionaddresses[type eq "work"].region
costCenterurn:ietf:params:scim:schemas:extension:enterprise:2.0:User:costCenter
formattedNamename.formatted

Group

MappingSCIM Attribute Path
displayNamedisplayName
externalIdexternalId
membersmembers
securityEnabledsecurityEnabled

Azure AD Configuration

When configuration the Azure AD enterprise applications provisioning for use with the SCIM Gateway ensure the following are addressed:

  • The Tenant URL must be provided in the form of <host>:<port>/scim. Historically AAD enterprise apps added the /scim path automatically. For new configurations it must be added manually.
  • The Secret Value must be left empty. If a value is provided it will be used as the authentication bearer token, which is not compatible with the SCIM gateway. Left empty, a bearer token will be generated by Azure AD, and this is what the SCIM gateway expects.