• Invited (0): the user has been invited
  • Rejected (1): invitation declined
  • Active (2): the user is active
  • Blocked (3): the user is locked
  • Canceled (4): the invitation is canceled
    //  Finding all active users 
    const userSearch = await System.users.search(). where(f => f.__status.eq(UserStatus.Active)).size(10000).all() 
    

Enumeration members

Active

Active: = 2

Blocked

Blocked: = 3

Canceled

Canceled: = 4

Invited

Invited: = 0

Rejected

Rejected: = 1