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

Returns the Audit list of the group within a time range. This list is arranged in terms of Name.

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

Syntax

C#
public DataSet GetAudits(
	int groupId,
	DateTime fromdate,
	DateTime todate
)
Visual Basic (Declaration)
Public Function GetAudits ( _
	groupId As Integer, _
	fromdate As DateTime, _
	todate As DateTime _
) As DataSet
Visual C++
public:
DataSet^ GetAudits(
	int groupId, 
	DateTime fromdate, 
	DateTime todate
)

Parameters

groupId
Type: System..::.Int32
The unique id of the organization
fromdate
Type: System..::.DateTime
Starting Date and Time of the range for which the audit list has to be retrieved.
todate
Type: System..::.DateTime
Ending Date and Time of the range for which the audit list has to be retrieved.

Return Value

DataSet containing of all the audit information. This DataSet consists of a single DataTable with the following columns.
  • name (System.String)Name of the user for whom the audit information being returned.
  • email (System.String)Email Address of the user.
  • user_id (System.Int32)Id of the user.
  • loginTimestamp (System.DateTime)Date and Time when the user last logged in into OfficeClip system.
  • loginCount (System.Int32)Number of times the user has logged in within the given date and time range.
  • membercount (System.Int32)Number of members added/invited by the user into organization/Group.
  • evtcount (System.Int32)Number of events created by the user.
  • postcount (System.Int32)Number of topics or replies posted by the user.
  • uploadcount (System.Int32)Number of documents uploaded by the user.
  • downloadcount (System.Int32)Number of documents downloaded by the user.
  • rescount (System.Int32)Number of reservations created by the user.
  • exptimecount (System.Int32)Number of timesheets or expenses created by the user.
  • casecount (System.Int32)Number of tracker cases created by the user.

See Also