...
Description | Filter |
---|---|
Import only the active users. | accountEnabled eq true |
Import the users based in London city. | city eq 'London' |
Import users in a country. | country eq 'Ecuador' |
Import users of two countries. | country eq 'Ecuador' or country eq 'India' |
Import users of multiple countries. | country in ('Ecuador', 'India', 'Germany') |
Import users which are having userType as Member | userType eq 'Member' |
Import only Engineering department | department eq 'Engineering' |
Import users having the usage location as Japan or Great Britain. | usageLocation in ('JP','GB') |
Note: When using the in operator, the request is limited to 15 expressions in the filter clause. More information.
...