|
IUserGetUsersChangedSince Method
|
Gets Users that have been inserted or updated on the given time period.
Namespace: Severa.APIAssembly: Severa.SOAP.API (in Severa.SOAP.API.dll) Version: 1.0.0+9acb7434aeb2855fb928fe129dfe34575a6d8fd4
Syntax List<User> GetUsersChangedSince(
string businessUnitGUID,
DateTime startDateTime,
int options
)
Function GetUsersChangedSince (
businessUnitGUID As String,
startDateTime As DateTime,
options As Integer
) As List(Of User)
Parameters
- businessUnitGUID String
- Business unit GUID. If given, gets users from the business unit and sub units. If not given, gets all users from the organization.
- startDateTime DateTime
- Start DateTime in UTC for the search (Mandatory). Comparison is only precise to the closest minute.
- options Int32
- Bitflag. Each bit of the enum represents a separate option. Use 'Bitwise Or' to specify a combination of options.
- 0 = None.
- 1 = Returns only the users that were inserted after startDateTime.
- 2 = Returns inactive users in addition to the active ones.
Return Value
ListUserList of User objects.
Exceptions See Also