| 
            
              IContactGetContactsChangedSince Method
             | 
          
        
        
 Gets contacts 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<Contact> GetContactsChangedSince(
	string accountGUID,
	DateTime startDateTime,
	int options = 0
)
Function GetContactsChangedSince ( 
	accountGUID As String,
	startDateTime As DateTime,
	Optional options As Integer = 0
) As List(Of Contact)
Parameters
- accountGUID  String
 - Account unique identifier to get contacts from
 - startDateTime  DateTime
 - Start DateTime in UTC for the search (Mandatory). Comparison is only precise to the closest minute.
 - options  Int32  (Optional)
 - Bitflag. Each bit of the enum represents a separate option. Use 'Bitwise Or' to specify a combination of options.
  
- 1 = Only new accounts
 - 2 = Include inactive accounts
 - 4 = Exclude not numbered accounts
 - 8 = Exclude those with no won cases
 
 
Return Value
ListContactA collection of contacts
Exceptions
See Also