 | AcademicServiceGetCourse Method |
Gets an individual course record.
Namespace:
(Default Namespace)
Assembly:
SeniorSystemsWS (in SeniorSystemsWS.dll) Version: 937.0.0.0 (937.0.0.33)
Syntaxpublic Course GetCourse(
string schoolID,
string courseID,
bool nextYear,
string authKey
)
Public Function GetCourse (
schoolID As String,
courseID As String,
nextYear As Boolean,
authKey As String
) As Course
public:
Course^ GetCourse(
String^ schoolID,
String^ courseID,
bool nextYear,
String^ authKey
)
public function GetCourse(
schoolID : String,
courseID : String,
nextYear : boolean,
authKey : String
) : Course
function GetCourse(schoolID, courseID, nextYear, authKey);
Parameters
- schoolID
- Type: SystemString
The School ID. - courseID
- Type: SystemString
The Course ID. - nextYear
- Type: SystemBoolean
If set to False, it will return Courses for the current academic year, otherwise
it will return Courses for the next year. - authKey
- Type: SystemString
Authentication Key obtained from the loginExt method in UserManagementService for a current administrator connection.
Return Value
Type:
CourseA
Course object.
Exceptions
Remarks
The authorization key provided must be linked to an administrator role.
See Also