ListUsers

Top  Previous  Next

SOAP

ListUsers( aHandle, aUserGroupName, &aLoginList, &aErrorMsg );

 

REST

/ListUsers?Handle=<value>&UserGroup=<value>

return LoginList, ErrorMsg

 

Description: ListUsers() Lists all the user logins in the specified user group.  The logins are provided in a comma-delimited list.  

 

aHandle The value created in the call to Login().  

aUserGroupName The user group to query.

&aLoginList The resulting list of user logins in a comma-delimited format.

&aErrorMsg is populated only if an error occurred that prevented the function from succeeding.  Otherwise, this parameter is empty.

 

Example: ListUsers( lHandle, "DOT@NY", lListOfUsers, lErrorMsg );