|
IAccountGetAccountsChangedSinceOpts Method
|
Gets accounts, which have been changed on the given time period.
Namespace: Severa.APIAssembly: Severa.SOAP.API (in Severa.SOAP.API.dll) Version: 1.0.0+c12d9df0d8d7fcea7d512dd611805415d37673fe
SyntaxList<Account> GetAccountsChangedSinceOpts(
DateTime startDateTime,
AccountGetOptions options
)
Function GetAccountsChangedSinceOpts (
startDateTime As DateTime,
options As AccountGetOptions
) As List(Of Account)
Parameters
- startDateTime DateTime
- Start date/time of the time period.
- options AccountGetOptions
- Options, which act as additional criteria in the query, see AccountGetOptions enum.
Return Value
ListAccountList of account objects.
Remarks
OBSOLETED! Use GetAccountsChangedSince() instead.
Enums are transferred via SOAP as strings. It is impossible to stack them with or-operator (|)
Example:
AccountGetOptions.CheckAddressChanges | AccountGetOptions.CheckContactChanges
will not yield any parseable results on server end. Use GetAccountsChangedSince() with integer option instead.
See Also