Click or drag to resize

IHourEntryGetHourEntriesByCaseGUID Method

Gets hour enties by case and time frame.

Namespace: Severa.API
Assembly: Severa.SOAP.API (in Severa.SOAP.API.dll) Version: 1.0.0+9acb7434aeb2855fb928fe129dfe34575a6d8fd4
Syntax
List<HourEntry> GetHourEntriesByCaseGUID(
	string caseGuid,
	DateTime? startDate,
	DateTime? endDate
)

Parameters

caseGuid  String
Case GUID, identifies the case from which work hour entries are returned.
startDate  NullableDateTime
Start date/time. When null, all entries that have been entered to dates before end date, are returned (Time information is ignored).
endDate  NullableDateTime
End date/time. When null, all entries entered starting from start date are returned (Time information is ignored).

Return Value

ListHourEntry
List of HourEntry objects. Returns null when caseGuid is null or an empty string.
Exceptions
ExceptionCondition
AuthenticationFailureExceptionThe caller could not be authenticated.
GeneralFailureExceptionAny other fault.
Remarks
If start date and end date aren't given, returns all work hour entries entered to the case.
See Also