Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Now, you have the chance to add a filter for your Users under the Admin tab.

Image Modified

The filters need to be formatted according to Microsoft Graph API requirements. You may find some examples below. Please refer to Microsoft Graph API documentation for more details.

Type

Description

Filter

User Filter

Import only the active users.

accountEnabled eq true

User Filter

Import the users based in London city.

city eq 'London'

User Filter

Import users in a country.

country eq 'Ecuador'

User Filter

Import users of two countries.

country eq 'Ecuador' or country eq 'India'

User Filter

Import users of multiple countries.

country in ('Ecuador', 'India', 'Germany')

User Filter

Import users which are having userType as Member

userType eq 'Member'

User Filter

Import only Engineering department

department eq 'Engineering'

User Filter

Import users having the usage location as Japan or Great Britain.

usageLocation in ('JP','GB')

Group Filter

Import only Microsoft 365 groups (aka unified groups)

groupTypes/any(c:c+eq+'Unified')

Group Filter

Import the groups having a name starting with “team”.

startswith(displayName, 'team)

Note: When using the in operator, the request is limited to 15 expressions in the filter clause. More information.

...

It is not possible to filter according to all the attributes or use all the filter operators. The following examples will not work with the filters due to the limitations of Microsoft Graph API. More information.

Description

Filter

Only the users having the organization's email address.

endsWith(mail,'@organization.com')

Users having an email address.

NOT(mail eq null)

Another way to filter users having an email address.

mail ne null

Import only if the users have a company name that is not Microsoft.

companyName ne null and NOT(companyName eq 'Microsoft')

Do not import the users starting with Conf.

NOT startsWith(displayName, 'Conf')

Do not import the users having user type as Guest

not(userType in ('Guest'))

Import the users in Latium Office location.

officeLocation eq 'Latium Office'

Note

Filtering groups is only available when “Full Throttle” feature is enabled. For more information refer to import configuration page.