Click or drag to resize

ICaseGetCasesChangedSince Method

Gets cases that have been added or updated after given time.

Namespace: Severa.API
Assembly: Severa.SOAP.API (in Severa.SOAP.API.dll) Version: 1.0.0
Syntax
List<Case> GetCasesChangedSince(
	string businessUnitGUID,
	DateTime startDateTime,
	int options
)

Parameters

businessUnitGUID  String
Business unit GUID. If given, only cases that belong to the business unit and its sub business units are retrieved.
startDateTime  DateTime
Start DateTime for the search. Precision in minutes, timezone UTC.
options  Int32
Bitflag. Each bit of the enum represents a separate option. Use 'Bitwise Or' to specify a combination of options.
  • 1 = Return only the cases that were created after startDateTime.
  • 4 = Return only the cases that have a number.
  • 32 = Do not return closed cases.
  • 64 = Do not return open cases.

Return Value

ListCase
List of Case object.
Exceptions
ExceptionCondition
AuthenticationFailureExceptionThe caller could not be authenticated.
GeneralFailureExceptionAny other fault.
See Also