|
IAccountGetAllAccounts Method
|
Get accounts in tiny format.
There can be thousands of accounts, depending on organization. This method is meant to be used in places where accounts need to be listed, and second API call is done to get detailed data.
Namespace: Severa.APIAssembly: Severa.SOAP.API (in Severa.SOAP.API.dll) Version: 1.0.0+5e6f58e3edb88d6a1b6bcd1fb5c50970e5924e19
SyntaxList<AccountTiny> GetAllAccounts(
AccountGetOptions options,
int startFromIndex,
int count
)
Function GetAllAccounts (
options As AccountGetOptions,
startFromIndex As Integer,
count As Integer
) As List(Of AccountTiny)
Parameters
- options AccountGetOptions
- Options, which act as additional criteria in the query, see AccountGetOptions enum.
- startFromIndex Int32
- Starting index of result set, first is 0.
- count Int32
- The amount of accounts to receive, maximum 10000 at a time.
Return Value
ListAccountTinyA list of TinyAccount objects.
Exceptions
See Also