[This is preliminary documentation and is subject to change.]

Gets a DataSet of all the users belonging to a particular account

Namespace:  OfficeClip.DBLayer.Account
Assembly:  OfficeClip.DBLayer (in OfficeClip.DBLayer)
Version: 8.1.1.0

Syntax

C#
public DataSet GetAccountUsersList(
	int accountId
)
Visual Basic (Declaration)
Public Function GetAccountUsersList ( _
	accountId As Integer _
) As DataSet
Visual C++
public:
DataSet^ GetAccountUsersList(
	int accountId
)

Parameters

accountId
Type: System..::.Int32
The id corresponding to a particular account.

Return Value

DataSet containing a single DataTable with the following columns
  • name (System.String) Name of the User
  • emailAddress (System.String) Email Address of the user
  • loginName (System.String) The login name for the user (used mainly for LDAP)
  • nameAndEmailAddress (System.String) Name and Email Address concatenated
  • UserId (System.Int32) id of the user
  • loginTimestamp (System.DateTime) DateTime in Current logged in user's timezone when the this particular user logged into OfficeClip.
  • loginCount (System.Int32) Count of total number of times this particular user has logged in into OfficeClip
  • IsAdmin (System.String) Whether this user is owner in that account.

See Also