Click or drag to resize

IAddressGetAddressesChangedSince Method

Gets addresses that were inserted or updated during the given time period.

Namespace: Severa.API
Assembly: Severa.SOAP.API (in Severa.SOAP.API.dll) Version: 1.0.0+9acb7434aeb2855fb928fe129dfe34575a6d8fd4
Syntax
List<Address> GetAddressesChangedSince(
	string accountGUID,
	DateTime startDateTime,
	int options = 0
)

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

ListAddress
A collection of Adress objects.
Exceptions
ExceptionCondition
AuthenticationFailureExceptionThe caller could not be authenticated.
GeneralFailureExceptionAny other fault.
See Also