SampleExamDailySchedule
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/sample/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 |
Uses default content-types: application/json application/xml
- 200 OK
-
Service request is OK and a response has been generated.
Example for applications/json{
"request": {
"attributes": "",
"method": "GET",
"resource": "/20181",
"status": 200,
"statusMessage": "Service request is OK and a response has been generated."
},
"response": {
"BUILDING_TEMP": "",
"DAY_TEMP": "",
"DISPLAYYEARTERM_temp": "",
"ROOM_NUMBER_TEMP": "",
"Season": "Winter",
"date_time_begin_temp": "",
"end_date": "25 Apr 2018",
"examDateInfo": [
{
"examDate": "08 Jan - 18 Apr",
"examInfo": [
{
"building": "MCKB",
"daysTaught": "T",
"instructor": "LastName, FirstName MiddleName",
"room": "185",
"scheduleCode": "123456789",
"secNumber": "001",
"secType": "",
"time": "11:00 - 2:00 p",
"totalEnrolled": "120",
"transcriptTitle": "STDEV 000 001"
}
]
}
],
"start_date": "08 Jan 2018"
}
} - 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.
- 405 Method Not Allowed
-
The service method is not supported by the service.
- 409 Conflict
-
A conflict has occurred. The response structure may contain information about the conflict.
- 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
- examDate: string
-
- examInfo: object[]
- room: room
-
- building: building
-
- instructor: instructor
-
- scheduleCode: scheduleCode
-
- totalEnrolled: totalEnrolled
-
- secNumber: secNumber
-
- secType: secType
-
- daysTaught: daysTaught
-
- time: time
-
- transcriptTitle: transcriptTitle
-
- method: method
-
- resource: resource
-
- attributes: attributes
-
- status: status
-
- statusMessage: statusMessage
-
- 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
-