
AndyC.64975 (Customer) asked a question.
I'm looking to create a rules that adds people to an Okta group IF they are a member of two AD groups. My best attempt:
user.isMemberOGroupName = "Group A" AND user.isMemberOGroupName = "Group B"
...is this possible?

Got there with trial and error. For anyone landing here off a search:
isMemberOfGroup("GroupID1") AND isMemberOfGroup("GroupID2") AND ! isMemberOfGroup("GroupID3")
^users who are members of group1 AND group2 but not group3