Skip to main content

What it does

Gets the number of batches, documents, and pages whose state changed to “Processed” within a certain time period.

Definition

UserStatistics [] GetUserStatistics( int userId, long fromDate, long toDate );

Parameters

Name

Type

Description

userId

int

User ID

fromDate

long

The period start date. To convert values, use the following methods (C#):

DateTime dtTime;
long lTime;
…
// conversion from DateTime to long
dTime = DateTime.FromFileTime(lTime);
…
// conversion from long to DateTime
lTime = dTime.ToFileTime();

toDate

long

The period end date. To convert values, use the following methods (C#):

DateTime dtTime;
long lTime;
…
// conversion from DateTime to long
dTime = DateTime.FromFileTime(lTime);
…
// conversion from long to DateTime
lTime = dTime.ToFileTime();

Returned value

TypeDescription
UserStatistics[]A set of records, each containing information about the number of batches, documents or pages whose state changed to “Processed” within the specified time period.