What should be given as Property list for Lookup user action in Flow designer

srividya Reddy
Giga Contributor

I am trying to lookup the user record in AD(active directory)using the "Lookup user" action in flow designer. I have given path, user name, principle name  in the property list, it is throwing error while executing the lookup user action. Please suggest me what should be given in the Property list to lookup the user record.

5 REPLIES 5

alexgg57
Tera Expert

I will give you the cases we use:

  • we need to see user is active - we put property 'enabled'
  • we need to know user's email - we put property 'mail'
  • we need to get DN - we put property 'distinguishedname'
  • we need to get CN - we put property 'CN'

etc., you can put properties as a comma separated as well, as Richard said.

Please avoid put in * (in our cases we have so huge user object, so it will cause a slowness performance..

 

Thanks, Alex.