Term types

Represents a list of all academic term types.

URI
/api/v9/academic-terms/types

GET List term types

List academic term types configured into the system. These are used to create different types of academic terms. In another way — term types are a finite list, terms themselves are created for each academic year.

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

Example request

Request
curl
curl \
  -X GET \
  -H "Authorization: DREAM apikey=\"YOUR-API-KEY\"" \
  "https://apply.example.edu/api/v9/academic-terms/types"

Response headers

HeaderValueDescription
Content-Typeapplication/jsonMedia type of the resource
Content-Length1234Size of the response body in bytes
X-Count2Number of available academic term types

Response codes

Response codeDescription
200 OKThe list of transactions was successfully returned

Example response

Response
{
  "1": {
    "name": "Fall semester"
  },
  "2": {
    "name": "Spring semester"
  }
}