 | AcademicServiceGetStudentSectionsByStudentID Method |
Gets the class schedule (sections) for a student.
Namespace:
(Default Namespace)
Assembly:
SeniorSystemsWS (in SeniorSystemsWS.dll) Version: 937.0.0.0 (937.0.0.33)
Syntaxpublic StudentSection[] GetStudentSectionsByStudentID(
string schoolID,
string studentID,
bool nextYear,
string authKey
)
Public Function GetStudentSectionsByStudentID (
schoolID As String,
studentID As String,
nextYear As Boolean,
authKey As String
) As StudentSection()
public:
array<StudentSection^>^ GetStudentSectionsByStudentID(
String^ schoolID,
String^ studentID,
bool nextYear,
String^ authKey
)
public function GetStudentSectionsByStudentID(
schoolID : String,
studentID : String,
nextYear : boolean,
authKey : String
) : StudentSection[]
function GetStudentSectionsByStudentID(schoolID, studentID, nextYear, authKey);
Parameters
- schoolID
- Type: SystemString
The School ID. - studentID
- Type: SystemString
The Student ID. - nextYear
- Type: SystemBoolean
If set to False, it will return the Students assigned to the Section for the current academic year, otherwise
it will return the Students assigned for the next year. - authKey
- Type: SystemString
Authentication Key obtained from the loginExt method in UserManagementService for a current administrator connection.
Return Value
Type:
StudentSection
A list of
Student Section object.
Exceptions
Remarks
The authorization key provided must be linked to an administrator role.
See Also