Click or drag to resize

DataExportServiceGetAllWebUsersExt Method

Gets all web users, selecting those matching a list of criteria.

Namespace:  (Default Namespace)
Assembly:  SeniorSystemsWS (in SeniorSystemsWS.dll) Version: 937.0.0.0 (937.0.0.33)
Syntax
public Person[] GetAllWebUsersExt(
	string authKey,
	int numberOfRecords,
	int lastEntityNumber,
	DateTime lastUpdateDate,
	List<WSMethodParam> parameters
)

Parameters

authKey
Type: SystemString
Authentication Key obtained from the loginExt method in UserManagementService for a current administrator connection.
numberOfRecords
Type: SystemInt32
The number of records to return with this call.
lastEntityNumber
Type: SystemInt32
The last entity number. The next page of records will begin with persons with a higher entity number.
lastUpdateDate
Type: SystemDateTime
The last update date. The next page of records will only contain persons who have had changed made since this date.
parameters
Type: System.Collections.GenericListWSMethodParam
The options to use to limit the records selected.

Return Value

Type: Person
A list of Person objects.
Exceptions
ExceptionCondition
ApplicationExceptionInvalid authorization key
ApplicationExceptionInsufficient privileges
ExceptionInternal Parameter Parse Error
Remarks
Typically, this call is made in a loop for performance reasons. The first call, will have lastEntityNo = 0. The next call would contain the entity number of the last record.

See Parameter Options for a list of parameters to use for the WSMethodParam[].Parameter property.

The authorization key provided must be linked to an administrator role.

See Also