 | AcademicServiceGetSchoolDays Method |
Gets the school days for a school/division.
Namespace:
(Default Namespace)
Assembly:
SeniorSystemsWS (in SeniorSystemsWS.dll) Version: 937.0.0.0 (937.0.0.33)
Syntaxpublic SchoolDay[] GetSchoolDays(
string schoolID,
bool nextYear,
string authKey
)
Public Function GetSchoolDays (
schoolID As String,
nextYear As Boolean,
authKey As String
) As SchoolDay()
public:
array<SchoolDay^>^ GetSchoolDays(
String^ schoolID,
bool nextYear,
String^ authKey
)
public function GetSchoolDays(
schoolID : String,
nextYear : boolean,
authKey : String
) : SchoolDay[]
function GetSchoolDays(schoolID, nextYear, authKey);
Parameters
- schoolID
- Type: SystemString
The School ID. - nextYear
- Type: SystemBoolean
If set to False, it will return School Days for the current academic year, otherwise
it will return School Days for the next year. - authKey
- Type: SystemString
Authentication Key obtained from the loginExt method in UserManagementService for a current administrator connection.
Return Value
Type:
SchoolDayA list of
SchoolDay objects.
Exceptions
RemarksSchool Days are the "weekly" calendar a school follows. It may be a standard Monday through Friday setup, or
could be school defined (A-G) rotation.
Remarks
The authorization key provided must be linked to an administrator role.
See Also