Need some documentation to understand the API to be used to get list of all active and inactive user

cancel
Showing results for 
Search instead for 
Did you mean: 
gundeep08
Customer

Need some documentation to understand the API to be used to get list of all active and inactive user

Need some documentation to understand the API to be used to get list of all active and inactive users and their last login, we want to explicitly mark them inactive if not logged in last couple of days.

1 Reply
openpj
Moderator
Moderator

Re: Need some documentation to understand the API to be used to get list of all active and inactive

The UserService allows you to get all the active users in the following way:

If you need a list of users as result:

 

List<User> findUsers(String filter, boolean applyFilterOnEmail, String email, String externalId, String externalIdCaseInsensitive, UserStatus userStatus, AccountType accountType, String company, ArrayList<Long> groupIds, ArrayList<Long> userIds, Long tenantId, boolean includePrimaryGroups, Pageable pageable);

 

 

Or if you need just the number (long) of results for your query:

 

Long countUsers(String filter, boolean applyFilterOnEmail, String email, String externalId, String externalIdCaseInsensitive, UserStatus userStatus, AccountType accountType, String company, ArrayList<Long> groupIds, Long tenantId);