 | AcademicServiceGetCourseRequests Method |
Gets the course requests.
Namespace:
(Default Namespace)
Assembly:
SeniorSystemsWS (in SeniorSystemsWS.dll) Version: 937.0.0.0 (937.0.0.33)
Syntaxpublic CourseRequest[] GetCourseRequests(
string schoolID,
string studentID,
string grade,
string courseID,
bool includePending,
string authKey
)
Public Function GetCourseRequests (
schoolID As String,
studentID As String,
grade As String,
courseID As String,
includePending As Boolean,
authKey As String
) As CourseRequest()
public:
array<CourseRequest^>^ GetCourseRequests(
String^ schoolID,
String^ studentID,
String^ grade,
String^ courseID,
bool includePending,
String^ authKey
)
public function GetCourseRequests(
schoolID : String,
studentID : String,
grade : String,
courseID : String,
includePending : boolean,
authKey : String
) : CourseRequest[]
function GetCourseRequests(schoolID, studentID, grade, courseID, includePending, authKey);
Parameters
- schoolID
- Type: SystemString
The School ID. - studentID
- Type: SystemString
Optionally, restrict course requests to a single student. - grade
- Type: SystemString
Optionally, restrict course requests to students in this grade. - courseID
- Type: SystemString
Optionally, restrict course requests to only this course. - includePending
- Type: SystemBoolean
If set to True, include pending (unapproved) requests in addition to the regular requests. - authKey
- Type: SystemString
Authentication Key obtained from the loginExt method in UserManagementService for a current administrator connection.
Return Value
Type:
CourseRequestA list of
CourseRequest objects.
Exceptions
Remarks
The authorization key provided must be linked to an administrator role.
See Also