| 
            
              ICaseGetCasesChangedSince Method
             | 
          
        
        
 Gets cases that have been added or updated after given time.
 
        
        Namespace: Severa.APIAssembly: Severa.SOAP.API (in Severa.SOAP.API.dll) Version: 1.0.0+d0bf05dcd8855b3363476bb1c84ab29c9a1ec66b
SyntaxList<Case> GetCasesChangedSince(
	string businessUnitGUID,
	DateTime startDateTime,
	int options
)
Function GetCasesChangedSince ( 
	businessUnitGUID As String,
	startDateTime As DateTime,
	options As Integer
) As List(Of Case)
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
ListCaseList of Case object.
Exceptions
See Also