This is an old revision of the document!


/api/academic-terms

HEAD, GET

List academic terms configured into the system. These are the main “buckets” where applications are categorized. An example of an academic term is “Fall 2016” or “Spring 2017”.

Syntax

GET /api/academic-terms
Host: apply.example.edu
Authorization: DREAM apikey="..."

Response headers

Content-Type: application/json
Content-Length: 1234
X-Count: 2

Response example

{
  "1": {
      "year": "/api/academic-years/2016"
      "name": "Fall semester"
  },
  "2": {
      "year": "/api/academic-years/2016"
      "name": "Spring semester"
  }
}