Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Specifies the type of identity to be found. If not specified "User" type is used.

Remarks

Path and Type arguments may be one of following values

Example

Find User

Code Block
languagejs
var user = $Membership.FindIdentity('elton.john');

Example

Find Group

Code Block
languagejs
var group = $Membership.FindIdentity('Developers','Group');

Example

Find Organization Unit

Code Block
languagejs
var orgUnit = $Membership.FindIdentity('General Management\\Accounting','OrganizationUnit');

...