Expressions in rules
Here you can find the list of supported expressions in rules.
- Expressions comprise of a profile field name and value in parentheses, for example:
Department(Sales) - The field name should be an exact match of the Profile field name as given in the List of available Profile Fields on the Rules Configuration page:

- Multiple field name and value pairs can be joined with:
-
AND operator
&, where User needs to meet all attributes.Example:
Country(UK)&Location(London) -
OR operator
,, where User needs to meet one of the attributes.Example:
Country(UK,US) -
WILDCARD operator
*, where User needs to meet partial attribute.Examples:
Department(IT*),Department(IT),(Department H*R) -
NOT operator
!, where a rule can be negated by adding!in front of a field name and value pair.Example:
!Company(ABC Inc.)
-
Important
Multiple Operators can be combined. It is recommended to keep expressions simple. For example: Country(UK)&Location(London,Manchester)