AcademicClassScheduleExamDailySchedule
This service gives the exam schedule for a selected year term including the options: exam building, exam begin time, exam room, and exam date.
Base URL: /domains/legacy/academic/classschedule/examdailyschedule
Version: v1
Summary
Path | Operation | Description |
---|---|---|
/documentation | GET | service definition |
/{year_term} | GET | Returns exam schedule for given yearterm and selected query attributes |
Paths
GET /documentation
service definition
Uses default content-types: application/json application/xml
- 200 OK
-
Success
GET /{year_term}
Tags: ExamDailyScheduleServiceReturns exam schedule for given yearterm and selected query attributes
year_term | yearTerm -> [1-2][0-9]{3}[1345] | path | string | |
exam_building | Exam Building | query | string | |
exam_begin_time | Exam Begin Time formatted as HH:MM[a] for AM or [p] for pm | query | string | |
exam_room | Exam Room | query | string | |
exam_date | Exam date formatted as DD MMM YYYY | query | string |
Uses default content-types: application/json application/xml
- 200 OK
-
return the exam schedule by day for a selected year term.
Example for application/json{
"request": {
"attributes": "",
"method": "GET",
"resource": "/json/20175/",
"status": 200,
"statusMessage": "Service request is OK and a response has been generated."
},
"response": {
"BUILDING_TEMP": "",
"DAY_TEMP": "",
"DISPLAYYEARTERM_temp": "",
"ROOM_NUMBER_TEMP": "",
"Season": "Fall",
"date_time_begin_temp": "",
"end_date": "21 Dec 2017",
"examDateInfo": [
{
"examDate": "05 Sep - 14 Dec",
"examInfo": [
{
"building": "JKB",
"daysTaught": "S",
"instructor": "Person, Name",
"room": "2113",
"scheduleCode": "123456789",
"secNumber": "001",
"secType": "",
"time": "7:00 - 10:00",
"totalEnrolled": "31",
"transcriptTitle": "DESPH 379 001"
}
]
},
{
"examDate": "16 Dec",
"examInfo": [
{
"building": "B66",
"daysTaught": "S",
"instructor": "Person, Name",
"room": "120",
"scheduleCode": "123456789",
"secNumber": "002",
"secType": "Evening",
"time": "5:45 - 7:45 p",
"totalEnrolled": "14",
"transcriptTitle": "CFM 311 002"
}
]
},
{
"examDate": "18 Dec",
"examInfo": [
{
"building": "B66",
"daysTaught": "M",
"instructor": "Person, Name",
"room": "120",
"scheduleCode": "123456789",
"secNumber": "001",
"secType": "",
"time": "7:00 - 10:00",
"totalEnrolled": "21",
"transcriptTitle": "CFM 311 001"
}
]
}
],
"start_date": "05 Sep 2017"
}
} - 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
- room: room
-
- building: building
-
- instructor: instructor
-
- scheduleCode: scheduleCode
-
- totalEnrolled: totalEnrolled
-
- secNumber: secNumber
-
- secType: secType
-
- daysTaught: daysTaught
-
- time: time
-
- transcriptTitle: transcriptTitle
-
- method: string
-
- resource: string
-
- attributes: string
-
- status: number
-
- statusMessage: string
-
- ROOM_NUMBER_TEMP: ROOM_NUMBER_TEMP
-
- BUILDING_TEMP: BUILDING_TEMP
-
- DAY_TEMP: DAY_TEMP
-
- date_time_begin_temp: date_time_begin_temp
-
- Season: Season
-
- DISPLAYYEARTERM_temp: DISPLAYYEARTERM_temp
-
- start_date: start_date
-
- end_date: end_date
-
- examDateInfo: examDateInfo
-