Use filters on Azure Active Directory user import

Dette emne er fortrinsvis for administratorer og/eller folk som bestyrer en Zylinc-løsning

Kun slutbruger-hjælpen er for tiden oversat til dansk. Hjælp til administration af Zylinc-løsninger er for tiden på engelsk.

When you Import users from Azure Active Directory, you can use a synchronization filter to determine that only users from a particular group and subgroups (for example people who belong to the Management group in Active Directory and any subgroups of that group) should be imported and synchronized. Examples:

  • displayName eq 'Management' (only import and synchronize users who belong to a group that has the display name Management (eq means equals))

  • endsWith(mail,'@example.org') (only import and synchronize users whose group e-mail addresses end with the domain example.org)

  • displayName eq 'Sales' or startsWith(displayName, 'Dev') (only import and synchronize users who belong to a group that has the display name Sales (and its subgroups) or a group whose display name starts with Dev (such as Development and its subgroups)

You can use these operators and functions in synchronization filters:

  • eq (equals), ne (doesn't equal)

  • lt (less than), gt (greater than), le (less than or equal to), ge (greater than or equal to)

  • and, or

  • startsWith, endsWith

  • in (read more), not (used to inverse some filters like startsWith() or endsWith()), any (lambda function), all (lambda function)