| 
            
              IAddressGetAddressesChangedSince Method
             | 
          
        
        
 Gets addresses that were inserted or updated during the given time period.
 
        
        Namespace: Severa.APIAssembly: Severa.SOAP.API (in Severa.SOAP.API.dll) Version: 1.0.0+d0bf05dcd8855b3363476bb1c84ab29c9a1ec66b
SyntaxList<Address> GetAddressesChangedSince(
	string accountGUID,
	DateTime startDateTime,
	int options = 0
)
Function GetAddressesChangedSince ( 
	accountGUID As String,
	startDateTime As DateTime,
	Optional options As Integer = 0
) As List(Of Address)
Parameters
- accountGUID  String
 - Accoung GUID, identifies the account that the addresses belong to.
 - startDateTime  DateTime
 - Starting time of search. Precision in minutes, timezone UTC.
 - options  Int32  (Optional)
 - Bitflag. Each bit of the enum represents a separate option. Use 'Bitwise Or' to specify a combination of options.
 
- 1 = Get only new addresses, that have been added on the given time period.
 - 2 = Include addresses, that belong to inactive accounts.
 - 4 = Exclude addresses from accounts that don't have number.
 - 8 = Exclude addresses from accounts which don't have cases that have "Won" sales status.
 
 
Return Value
ListAddressA collection of Adress objects.
Exceptions
See Also