 | DataExportServiceGetAllParentsByUpdateDate Method |
Gets all person information for all parents that have had information changed since a date.
Namespace:
(Default Namespace)
Assembly:
SeniorSystemsWS (in SeniorSystemsWS.dll) Version: 937.0.0.0 (937.0.0.33)
Syntaxpublic Person[] GetAllParentsByUpdateDate(
string authKey,
DateTime date,
bool webusersOnly,
bool includeSpouseInfo,
bool includeStudents,
bool oneParentPerFamily
)
Public Function GetAllParentsByUpdateDate (
authKey As String,
date As DateTime,
webusersOnly As Boolean,
includeSpouseInfo As Boolean,
includeStudents As Boolean,
oneParentPerFamily As Boolean
) As Person()
public:
array<Person^>^ GetAllParentsByUpdateDate(
String^ authKey,
DateTime date,
bool webusersOnly,
bool includeSpouseInfo,
bool includeStudents,
bool oneParentPerFamily
)
public function GetAllParentsByUpdateDate(
authKey : String,
date : DateTime,
webusersOnly : boolean,
includeSpouseInfo : boolean,
includeStudents : boolean,
oneParentPerFamily : boolean
) : Person[]
function GetAllParentsByUpdateDate(authKey, date, webusersOnly, includeSpouseInfo, includeStudents, oneParentPerFamily);
Parameters
- authKey
- Type: SystemString
Authentication Key obtained from the loginExt method in UserManagementService for a current administrator connection. - date
- Type: SystemDateTime
The date. - webusersOnly
- Type: SystemBoolean
If set to True, then only parents having web accounts will be returned. - includeSpouseInfo
- Type: SystemBoolean
If set to True, then the returned Person structure will include spouse information. - includeStudents
- Type: SystemBoolean
If set to True, then the returned Person structure will include the Person's students' (children) information. - oneParentPerFamily
- Type: SystemBoolean
If set to True, then the returned Person structure will include only one parent (name 1 or name 2).
Return Value
Type:
PersonA list of
Person objects.
Exceptions
RemarksThe authorization key provided must be linked to an administrator role.
See Also