Click or drag to resize
ClientUserList Method
Returns a List of users in the current organization.

Namespace: MOVEit.DMZ.API
Assembly: MOVEit.DMZ.API (in MOVEit.DMZ.API.dll) Version: 9.0.0.0
Syntax
public List<MOVEitUserInfo> UserList()

Return Value

Type: ListMOVEitUserInfo
List containing list results if successful; otherwise, null.
Remarks

Returns an empty List if no users are found or

null
if the currently authorized user is not permitted to get this information.

NOTE: MOVEit Transfer enforces a 1000 entry limit on the number of users that can be returned from a single listing, for performance reasons. If you need to list more than 1000 users, please use the UserListAdvanced(Int32, Int32, ClientUserPermissionFilter, ClientUserStatusFilter, String, ClientUserSearchStringFilter, String) function.

To determine if there are more than 1000 users on the system, check the UserListCount value after this function returns. It will contain the total number of users available to the current user.

See Also