
PatrickH.51562 (Customer) asked a question.
Hello,
I'm wondering if its possible to write a rule in Okta Expression language to place users in a group if they match Group A and are also not in Group B. The logic going something like:
if isMemberOfGroup (A) && notMemberOfGroup (B)
Thanks,

Hello. This is possible:
isInOne and isNotInAnother
IF
isMemberOfGroupName("jamf") and not isMemberOfGroupName("jamf_admins")
THEN
Assign to
test
Thanks Andrey, will give that a go