AcademicClassScheduleCourseInstructor
List of Instructors for a Course
Base URL: /domains/legacy/academic/classschedule/courseinstructor
Version: v1
Summary
Path | Operation | Description |
---|---|---|
/{+year_term}/{curriculum_id}/{title_code} | GET | Instructor list for a specific course |
Paths
GET /{+year_term}/{curriculum_id}/{title_code}
Tags: instructorlist+year_term | The year term of the course, up to 4 year terms may be entered | path | string | |
curriculum_id | The curriculum_id of the course | path | string | |
title_code | The title code of the course | path | string |
Uses default content-types: application/json
- 200 OK
-
Expected response to a valid request
Example for application/json{
"request": {
"attributes": "",
"method": "GET",
"resource": "/20171/05144/006",
"status": 200,
"statusMessage": "Service request is OK and a response has been generated."
},
"response": {
"curriculum_id": "05144",
"instructor_list": [
{
"instructor_type": "PRIMARY",
"person_id": "123456789",
"preferred_first_name": "Curtis",
"sort_name": "Child, Curtis D"
}
],
"title_code": "006"
}
} - 400 Bad Request
-
There appears to be a syntax error in the composition of the service request. The response structure may contain information about the error. If the base URI or service request URI is invalid, any response will come as an HTTP response.
- 401 Unauthorized
-
Failure to authenticate.
- 403 Forbidden
-
The user does not have access to the resource.
- 404 Not Found
-
The target resource can not be found for the provided resource identifiers.
- 500 Internal Server Error
-
An error occurred generating the response to the service request. This is strictly a server error and not an application error.
Schema definitions
- person_id: person_id
-
- preferred_first_name: preferred_first_name
-
- instructor_type: instructor_type
-
- sort_name: sort_name
-
- method: string
-
- resource: string
-
- attributes: string
-
- status: integer
-
- statusMessage: string
-
- curriculum_id: curriculum_id
-
- title_code: title_code
-
- instructor_list: instructor_list
-